Issues (136)

code/interface/ModuleConfigInterface.php (2 issues)

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
The doc comment [type] at position 0 could not be parsed: Unknown type name '[' at position 0 in [type].
Loading history...
21
     * @param  [type] $fileContent [description]
22
     * @return [type]              [description]
0 ignored issues
show
Documentation Bug introduced by
The doc comment [type] at position 0 could not be parsed: Unknown type name '[' at position 0 in [type].
Loading history...
23
     */
24
    public function customiseFile($location, $fileContent);
25
}
26