1 | <?php |
||
14 | final class Store extends LuceneStore |
||
15 | { |
||
16 | use EloquentTrait; |
||
17 | |||
18 | public function __construct(Delete $delete, Insert $insert, Index $index) |
||
22 | |||
23 | /** |
||
24 | * @param Model $model |
||
25 | */ |
||
26 | public function insertModel(Model $model, $deleteFirst = true) |
||
36 | |||
37 | /** |
||
38 | * @param Model $model |
||
39 | */ |
||
40 | public function deleteModel(Model $model) |
||
44 | |||
45 | /** |
||
46 | * @param Model $model |
||
47 | * @return array |
||
48 | */ |
||
49 | private function filterFields($model) |
||
53 | |||
54 | /** |
||
55 | * @param Model $model |
||
56 | * @return array |
||
57 | */ |
||
58 | private function filterParameters($model) |
||
66 | |||
67 | /** |
||
68 | * @param array $haystack |
||
69 | * @param array $needle |
||
70 | * @return array |
||
71 | * @todo refactor this out of here. |
||
72 | */ |
||
73 | private function filterKeysFromArray(array $haystack, array $needle) |
||
77 | } |
||
78 |
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.