1 | <?php namespace Mascame\Artificer\Model; |
||
10 | class Model |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var ModelSchema |
||
15 | */ |
||
16 | public $schema; |
||
17 | |||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | public $models; |
||
22 | |||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | public $columns; |
||
27 | |||
28 | /** |
||
29 | * @var \Illuminate\Database\Eloquent\Model |
||
30 | */ |
||
31 | public $model; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | public $class; |
||
37 | |||
38 | /** |
||
39 | * @var |
||
40 | */ |
||
41 | public $name; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | public $keyname; |
||
47 | |||
48 | /** |
||
49 | * @var |
||
50 | */ |
||
51 | public $table; |
||
52 | |||
53 | /** |
||
54 | * @var |
||
55 | */ |
||
56 | public $fillable; |
||
57 | |||
58 | /** |
||
59 | * @var array|mixed |
||
60 | */ |
||
61 | protected $options = []; |
||
62 | protected $defaultOptions = null; |
||
63 | |||
64 | /** |
||
65 | * @var array|mixed |
||
66 | */ |
||
67 | public $relations = []; |
||
68 | |||
69 | /** |
||
70 | * @var |
||
71 | */ |
||
72 | public static $current = null; |
||
73 | |||
74 | /** |
||
75 | * @param ModelSchema $schema |
||
76 | */ |
||
77 | public function __construct(ModelSchema $schema) |
||
78 | { |
||
79 | $this->schema = $schema; |
||
80 | $this->relations = new ModelRelation(); |
||
81 | |||
82 | if (Str::startsWith(Route::currentRouteName(), 'admin.model.')) { |
||
83 | $this->prepareCurrentModel(); |
||
84 | } |
||
85 | |||
86 | $this->share(); |
||
87 | } |
||
88 | |||
89 | |||
90 | public function share() |
||
91 | { |
||
92 | View::share('tables', $this->schema->tables); |
||
93 | View::share('models', $this->models = $this->getModelsData()); |
||
94 | View::share('model', $this->getCurrentModelData()); |
||
95 | } |
||
96 | |||
97 | /** |
||
98 | * @return array |
||
99 | */ |
||
100 | private function getModelsData() |
||
101 | { |
||
102 | foreach ($this->schema->models as $modelName => $model) { |
||
103 | $this->schema->models[$modelName]['options'] = $this->getOptions($modelName); |
||
104 | $this->schema->models[$modelName]['hidden'] = $this->isHidden($modelName); |
||
105 | |||
106 | $title = null; |
||
|
|||
107 | if (isset($this->schema->models[$modelName]['title'])) { |
||
108 | $title = $this->schema->models[$modelName]['title']; |
||
109 | } else { |
||
110 | $title = Str::title( |
||
111 | str_replace('_', ' ', $this->schema->models[$modelName]['table']) |
||
112 | ); |
||
113 | } |
||
114 | |||
115 | $this->schema->models[$modelName]['title'] = $title; |
||
116 | } |
||
117 | |||
118 | return $this->schema->models; |
||
119 | } |
||
120 | |||
121 | /** |
||
122 | * @param $modelName |
||
123 | * @return bool |
||
124 | */ |
||
125 | public function isHidden($modelName) |
||
129 | |||
130 | /** |
||
131 | * @return bool |
||
132 | */ |
||
133 | public function hasGuarded() |
||
137 | |||
138 | /** |
||
139 | * @return bool |
||
140 | */ |
||
141 | public function hasFillable() |
||
145 | |||
146 | /** |
||
147 | * @return int|null|string |
||
148 | */ |
||
149 | private function getCurrentModelName() |
||
163 | |||
164 | protected function prepareCurrentModel() |
||
173 | |||
174 | /** |
||
175 | * @return array |
||
176 | */ |
||
177 | private function getCurrentModelData() |
||
189 | |||
190 | /** |
||
191 | * @param $model |
||
192 | * @return bool |
||
193 | */ |
||
194 | protected function isCurrent($modelName) |
||
202 | |||
203 | /** |
||
204 | * @return Model |
||
205 | */ |
||
206 | public static function getCurrent() |
||
210 | |||
211 | /** |
||
212 | * @param null $model |
||
213 | * @return null |
||
214 | */ |
||
215 | public function getRouteName($model = null) |
||
221 | |||
222 | /** |
||
223 | * @param $modelName |
||
224 | */ |
||
225 | protected function setCurrent($modelName) |
||
230 | |||
231 | /** |
||
232 | * @param null $model |
||
233 | * @return mixed |
||
234 | */ |
||
235 | public function getOptions($model = null) |
||
243 | |||
244 | public function getDefaultOptions() |
||
250 | |||
251 | /** |
||
252 | * @param $key |
||
253 | * @param null $model |
||
254 | * @return mixed |
||
255 | */ |
||
256 | public function getOption($key, $default = null, $model = null) |
||
263 | |||
264 | /** |
||
265 | * @return array|mixed |
||
266 | */ |
||
267 | public function getRelations() |
||
271 | |||
272 | } |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.