1 | <?php |
||
22 | abstract class Locator implements LocatorInterface, Countable { |
||
23 | |||
24 | /** |
||
25 | * @var array $flags |
||
26 | */ |
||
27 | protected $flags = array(); |
||
28 | |||
29 | |||
30 | |||
31 | /** |
||
32 | * FileLocator constructor. |
||
33 | * |
||
34 | * @access public |
||
35 | * @param array $flags controls how files are found and/or file data is returned |
||
36 | * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
||
37 | */ |
||
38 | public function __construct( $flags = array() ) { |
||
48 | |||
49 | |||
50 | |||
51 | /** |
||
52 | * @see http://php.net/manual/en/class.filesystemiterator.php#filesystemiterator.constants |
||
53 | * @access public |
||
54 | * @param array $flags |
||
55 | * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
||
56 | */ |
||
57 | public function setFlags( $flags ) { |
||
63 | |||
64 | |||
65 | |||
66 | } |
||
67 | // End of file Locator.php |
||
68 | // Location: /Locator.php |