| 1 | <?php |
||
| 22 | class GitLog { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var Git_LogDao |
||
| 26 | */ |
||
| 27 | private $_dao; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Constructor of the class |
||
| 31 | * |
||
| 32 | * @return Void |
||
|
|
|||
| 33 | */ |
||
| 34 | public function __construct() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Returns the SQL request & form field for the Git pushes |
||
| 40 | * |
||
| 41 | * @param Array $params Log parameters |
||
| 42 | * |
||
| 43 | * @return Void |
||
| 44 | */ |
||
| 45 | function logsDaily($params) { |
||
| 50 | } |
||
| 51 | ?> |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.