sunnysideup /
silverstripe-modulechecks
| 1 | <?php |
||
| 2 | |||
| 3 | |||
| 4 | interface ModuleConfigInterface |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * array looks like this: |
||
| 9 | * array( |
||
| 10 | * "FileLocation" => "docs/myfile.txt, |
||
| 11 | * "SourceLocation => "http://...." |
||
| 12 | * ); |
||
| 13 | * @return array |
||
| 14 | */ |
||
| 15 | public function params(); |
||
| 16 | |||
| 17 | /** |
||
| 18 | * |
||
| 19 | * |
||
| 20 | * @param [type] $location [description] |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 21 | * @param [type] $fileContent [description] |
||
| 22 | * @return [type] [description] |
||
|
0 ignored issues
–
show
|
|||
| 23 | */ |
||
| 24 | public function customiseFile($location, $fileContent); |
||
| 25 | } |
||
| 26 |