| Conditions | 3 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function __construct($file = null, ContentTypeAttribute $contentType = null, ExtensionAttribute $extension = null) |
||
| 28 | { |
||
| 29 | parent::__construct($contentType, $extension); |
||
| 30 | |||
| 31 | if (null !== $file) { |
||
| 32 | $this->file = $file instanceof \SplFileInfo ? $file : new \SplFileInfo($file); |
||
| 33 | } |
||
| 34 | } |
||
| 35 | |||
| 48 |