Utilities > CssSelector > useful methods related to CSS selectors

This commit is contained in:
Meritoo
2018-08-07 09:18:55 +02:00
parent e850375c19
commit 8ecbefbba6
5 changed files with 443 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* (c) Meritoo.pl, http://www.meritoo.pl
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Utilities;
use Meritoo\Common\Traits\CssSelector\FormCssSelector;
/**
* Useful methods related to CSS selectors
*
* @author Meritoo <github@meritoo.pl>
* @copyright Meritoo <http://www.meritoo.pl>
*/
class CssSelector
{
use FormCssSelector;
}