1 | <?php |
||
28 | trait ExtraClauseTrait |
||
29 | { |
||
30 | use AbstractTrait; |
||
31 | |||
32 | /** |
||
33 | * {@inheritDoc} |
||
34 | */ |
||
35 | public function before(/*# string */ $position, /*# string */ $rawString) |
||
40 | |||
41 | /** |
||
42 | * {@inheritDoc} |
||
43 | */ |
||
44 | public function after(/*# string */ $position, /*# string */ $rawString) |
||
49 | |||
50 | /** |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | public function hint(/*# string */ $hintString) |
||
57 | |||
58 | /** |
||
59 | * {@inheritDoc} |
||
60 | */ |
||
61 | public function option(/*# string */ $optionString) |
||
65 | |||
66 | /** |
||
67 | * @param string $type |
||
68 | * @param string $position |
||
69 | * @param string $rawString |
||
70 | * @return $this |
||
71 | * @access protected |
||
72 | */ |
||
73 | protected function beforeAfter( |
||
83 | |||
84 | /** |
||
85 | * Build AFTER/BEFORE |
||
86 | * |
||
87 | * @param string $beforeOrAfter BEFORE|AFTER |
||
88 | * @param string $position |
||
89 | * @param array $settings |
||
90 | * @return string |
||
91 | * @access protected |
||
92 | */ |
||
93 | protected function buildBeforeAfter( |
||
107 | } |
||
108 |