| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 26 | public static function getGroup(string $group, string $locale) : array |
||
| 27 | { |
||
| 28 | return static::query() |
||
| 29 | ->where('name', 'LIKE', "{$group}.%") |
||
| 30 | ->get() |
||
| 31 | ->map(function (Fragment $fragment) use ($locale, $group) { |
||
| 32 | return [ |
||
| 33 | 'key' => preg_replace("/{$group}\\./", '', $fragment->name, 1), |
||
|
|
|||
| 34 | 'text' => $fragment->translate($locale)->text, |
||
| 35 | ]; |
||
| 36 | }) |
||
| 37 | ->pluck('text', 'key') |
||
| 38 | ->toArray(); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.