| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function create() |
||
| 45 | { |
||
| 46 | $this->excel = new \PHPExcel(); |
||
| 47 | |||
| 48 | $this->excel->getProperties()->setCreator($this->creator) |
||
| 49 | ->setLastModifiedBy($this->lastModifiedBy) |
||
| 50 | ->setTitle($this->title) |
||
| 51 | ->setSubject($this->subject) |
||
| 52 | ->setDescription($this->description) |
||
| 53 | ->setKeywords($this->keywords) |
||
| 54 | ->setCategory($this->category); |
||
| 55 | |||
| 56 | return $this->excel; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.