1 | <?php |
||
29 | trait WritableTrait |
||
30 | { |
||
31 | /** |
||
32 | * Writable defalt to TRUE |
||
33 | * |
||
34 | * @var false|mixed |
||
35 | * @access protected |
||
36 | */ |
||
37 | protected $writable = true; |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function isWritable()/*# : bool */ |
||
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | */ |
||
50 | public function setWritable($writable)/*# : bool */ |
||
55 | } |
||
56 |