| 1 | <?php |
||
| 5 | class File implements \JsonSerializable |
||
| 6 | { |
||
| 7 | protected $path; |
||
| 8 | protected $title; |
||
| 9 | protected $caption; |
||
| 10 | protected $tags; |
||
| 11 | |||
| 12 | public function __construct($path, $title = null, $caption = null, $tags = null) |
||
| 19 | |||
| 20 | public function jsonSerialize() |
||
| 24 | |||
| 25 | public function toArray() |
||
| 33 | |||
| 34 | protected function parseFile() |
||
| 52 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.