| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | trait HasStructuredData |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Factory method for generating the script for a Schema.org type. |
||
| 22 | * |
||
| 23 | * @return Type |
||
| 24 | */ |
||
| 25 | abstract protected function generateStructuredDataScript() : Type; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Render a json-ld script tag for the entity that implements this trait. |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function toJsonLdScript() : string |
||
| 37 |