1 | <?php |
||
32 | class BunchKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * This is a utility class, so protect it against direct |
||
37 | * instantiation. |
||
38 | */ |
||
39 | private function __construct() |
||
42 | |||
43 | /** |
||
44 | * This is a utility class, so protect it against cloning. |
||
45 | * |
||
46 | * @return void |
||
47 | */ |
||
48 | private function __clone() |
||
51 | |||
52 | /** |
||
53 | * The key for the prefix part found in the filename. |
||
54 | * |
||
55 | * @var string |
||
56 | */ |
||
57 | const PREFIX = 'prefix'; |
||
58 | |||
59 | /** |
||
60 | * The key for the filename part found in the filename. |
||
61 | * |
||
62 | * @var string |
||
63 | */ |
||
64 | const FILENAME = 'filename'; |
||
65 | |||
66 | /** |
||
67 | * The key for the counter part found in the filename. |
||
68 | * |
||
69 | * @var string |
||
70 | */ |
||
71 | const COUNTER = 'counter'; |
||
72 | } |
||
73 |