1 | <?php |
||
28 | trait ExtraClauseTrait |
||
29 | { |
||
30 | use AbstractTrait; |
||
31 | |||
32 | /** |
||
33 | * {@inheritDoc} |
||
34 | */ |
||
35 | public function before( |
||
42 | |||
43 | /** |
||
44 | * {@inheritDoc} |
||
45 | */ |
||
46 | public function after( |
||
53 | |||
54 | /** |
||
55 | * {@inheritDoc} |
||
56 | */ |
||
57 | public function hint(/*# string */ $hintString, array $params = []) |
||
61 | |||
62 | /** |
||
63 | * {@inheritDoc} |
||
64 | */ |
||
65 | public function option(/*# string */ $optionString, array $params = []) |
||
69 | |||
70 | /** |
||
71 | * @param string $type |
||
72 | * @param string $position |
||
73 | * @param string $rawString |
||
74 | * @param array $params |
||
75 | * @return $this |
||
76 | * @access protected |
||
77 | */ |
||
78 | protected function beforeAfter( |
||
89 | |||
90 | /** |
||
91 | * Build AFTER/BEFORE |
||
92 | * |
||
93 | * @param string $beforeOrAfter BEFORE|AFTER |
||
94 | * @param string $position |
||
95 | * @param array $settings |
||
96 | * @return string |
||
97 | * @access protected |
||
98 | */ |
||
99 | protected function buildBeforeAfter( |
||
113 | } |
||
114 |