Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function __construct(string $collection, string $bucket, string $object, string $text, string $locale=null) |
||
22 | { |
||
23 | $this->parameters = [ |
||
24 | 'collection' => $collection, |
||
25 | 'bucket' => $bucket, |
||
26 | 'object' => $object, |
||
27 | 'text' => self::wrapInQuotes($text), |
||
|
|||
28 | 'locale' => $locale ? "LANG($locale)": null, |
||
29 | ]; |
||
30 | |||
31 | parent::__construct($this->command, $this->parameters); |
||
32 | } |
||
33 | } |