1 | <?php |
||
20 | trait StringSchemaTrait { |
||
21 | |||
22 | /** |
||
23 | * Schema. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $schema; |
||
28 | |||
29 | /** |
||
30 | * Get the schema. |
||
31 | * |
||
32 | * @return string Returns the schema. |
||
33 | */ |
||
34 | public function getSchema() { |
||
37 | |||
38 | /** |
||
39 | * Set the schema. |
||
40 | * |
||
41 | * @param string $schema The schema. |
||
42 | */ |
||
43 | public function setSchema($schema) { |
||
47 | } |
||
48 |