| 1 | <?php |
||
| 8 | class File implements SourceConfiguration |
||
| 9 | { |
||
| 10 | |||
| 11 | protected $pathToFile; |
||
| 12 | protected $name = 'apiBpm'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * get array with configuration |
||
| 16 | * @return array |
||
| 17 | */ |
||
| 18 | 1 | public function get() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param $path string path to file |
||
| 26 | * @return bool |
||
| 27 | */ |
||
| 28 | 3 | public function setSource($path) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | 1 | public function getName() |
|
| 46 | } |