1 | <?php |
||
8 | class Project extends HasContent |
||
9 | { |
||
10 | use Sluggable, SoftDeletes; |
||
11 | |||
12 | /** |
||
13 | * The table associated with the model. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $table = 'projects'; |
||
18 | |||
19 | /** |
||
20 | * The attributes that are mass assignable. |
||
21 | * |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $fillable = [ |
||
25 | 'name', 'slug', 'type', 'visible', 'order', |
||
26 | ]; |
||
27 | |||
28 | /** |
||
29 | * Properties to always eager load. |
||
30 | * |
||
31 | * @var array |
||
32 | */ |
||
33 | protected $with = ['blocks', 'images', 'links']; |
||
34 | |||
35 | /** |
||
36 | * The attributes that should be casted to native types. |
||
37 | * |
||
38 | * @var array |
||
39 | */ |
||
40 | protected $casts = [ |
||
41 | 'visible' => 'boolean', |
||
42 | ]; |
||
43 | |||
44 | /** |
||
45 | * Fields that are dates. |
||
46 | * |
||
47 | * @var array |
||
48 | */ |
||
49 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
||
50 | |||
51 | /** |
||
52 | * Get the route key for the model. |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | public function getRouteKeyName() |
||
60 | |||
61 | /** |
||
62 | * Bootstrap model. |
||
63 | */ |
||
64 | public static function boot() |
||
76 | |||
77 | /** |
||
78 | * Return all visible projects. |
||
79 | * |
||
80 | * @param bool $group If true, group projects by 'type'. |
||
81 | * @param bool $order If true, order projects by 'order'. |
||
82 | * |
||
83 | * @return \Illuminate\Support\Collection |
||
84 | */ |
||
85 | public static function allVisible($group = true, $order = true) |
||
91 | |||
92 | /** |
||
93 | * Return all hidden projects. |
||
94 | * |
||
95 | * @param bool $group If true, group projects by 'type'. |
||
96 | * @param bool $order If true, order projects by 'order'. |
||
97 | * |
||
98 | * @return \Illuminate\Support\Collection |
||
99 | */ |
||
100 | public static function allHidden($group = true, $order = true) |
||
106 | |||
107 | /** |
||
108 | * Return all projects grouped by 'type'. |
||
109 | * |
||
110 | * @param bool $order If true, order projects by 'order'. |
||
111 | * |
||
112 | * @return \Illuminate\Support\Collection |
||
113 | */ |
||
114 | public static function allGrouped($order = true) |
||
120 | |||
121 | /** |
||
122 | * Return all projects ordered by 'order'. |
||
123 | * |
||
124 | * @return \Illuminate\Support\Collection |
||
125 | */ |
||
126 | public static function allOrdered() |
||
132 | |||
133 | /** |
||
134 | * Order and group query, return results. |
||
135 | * |
||
136 | * @param Builder $query Query to be ordered. |
||
137 | * @param bool $group If true, group projects by 'type'. |
||
138 | * @param bool $order If true, order projects by 'order'. |
||
139 | * |
||
140 | * @return \Illuminate\Support\Collection |
||
141 | */ |
||
142 | protected static function orderAndGroupQuery($query, $group, $order) |
||
162 | |||
163 | /** |
||
164 | * Get all projects with given block name. |
||
165 | * |
||
166 | * @param string $blockName Name of block. |
||
167 | * |
||
168 | * @return \Illuminate\Support\Collection |
||
169 | */ |
||
170 | public static function hasBlockNamed($blockName) |
||
174 | |||
175 | /** |
||
176 | * Get all projects with given image name. |
||
177 | * |
||
178 | * @param string $imageName Name of image. |
||
179 | * |
||
180 | * @return \Illuminate\Support\Collection |
||
181 | */ |
||
182 | public static function hasImageNamed($imageName) |
||
186 | |||
187 | /** |
||
188 | * Get all projects with given link name. |
||
189 | * |
||
190 | * @param string $linkName Name of link. |
||
191 | * |
||
192 | * @return \Illuminate\Support\Collection |
||
193 | */ |
||
194 | public static function hasLinkNamed($linkName) |
||
198 | |||
199 | /** |
||
200 | * Get all projects with relationship on table that has given name. |
||
201 | * |
||
202 | * @param string $table Name of table relationship is on. |
||
203 | * @param string $name Relationship name. |
||
204 | * |
||
205 | * @return \Illuminate\Support\Collection |
||
206 | */ |
||
207 | protected static function hasRelationshipNamed($table, $name) |
||
214 | |||
215 | /** |
||
216 | * Return the project id. |
||
217 | * |
||
218 | * @return int |
||
219 | */ |
||
220 | public function id() |
||
224 | |||
225 | /** |
||
226 | * Return the project name. |
||
227 | * |
||
228 | * @return string |
||
229 | */ |
||
230 | public function name() |
||
234 | |||
235 | /** |
||
236 | * Return the project type. |
||
237 | * |
||
238 | * @return string |
||
239 | */ |
||
240 | public function type() |
||
244 | |||
245 | /** |
||
246 | * Return the project slug. |
||
247 | * |
||
248 | * @return string |
||
249 | */ |
||
250 | public function slug() |
||
254 | |||
255 | /** |
||
256 | * Return the project order value. |
||
257 | * |
||
258 | * @return int |
||
259 | */ |
||
260 | public function order() |
||
264 | |||
265 | /** |
||
266 | * Get formatted text of block named description or first block. |
||
267 | * |
||
268 | * @return Larafolio\Models\TextBlock |
||
269 | */ |
||
270 | public function getProjectBlock() |
||
280 | |||
281 | /** |
||
282 | * Get formatted text of block named description or first block. |
||
283 | * |
||
284 | * @param bool $formatted If true, return formatted text. |
||
285 | * |
||
286 | * @return string |
||
287 | */ |
||
288 | public function getProjectBlockText($formatted = true) |
||
300 | |||
301 | /** |
||
302 | * Get url of small image with project name or first image in collection. |
||
303 | * |
||
304 | * @return Larafolio\Models\Image |
||
305 | */ |
||
306 | public function getProjectImage() |
||
316 | |||
317 | /** |
||
318 | * Get url of small image with project name or first image in collection. |
||
319 | * |
||
320 | * @param string $size The size of the image, name of image cache filter. |
||
321 | * |
||
322 | * @return string |
||
323 | */ |
||
324 | public function getProjectImageUrl($size = 'small') |
||
334 | |||
335 | /** |
||
336 | * Get blocks sorted by order. |
||
337 | * |
||
338 | * @param \Builder $query Query builder. |
||
339 | * @param string $slug Project slug. |
||
340 | * |
||
341 | * @return \Builder |
||
342 | */ |
||
343 | public function scopeWithBlocks($query, $slug) |
||
348 | |||
349 | /** |
||
350 | * Get full project info (blocks and links sorted by order). |
||
351 | * |
||
352 | * @param \Builder $query Query builder. |
||
353 | * @param string $slug Project slug. |
||
354 | * |
||
355 | * @return \Builder |
||
356 | */ |
||
357 | public function scopeFull($query, $slug) |
||
363 | |||
364 | /** |
||
365 | * Order given relationship by order value. |
||
366 | * |
||
367 | * @param \Builder $query Query builder. |
||
368 | * @param string $relationship Name of relationship to order. |
||
369 | * |
||
370 | * @return \Builder |
||
371 | */ |
||
372 | public function scopeOrderRelationship($query, $relationship) |
||
378 | |||
379 | /** |
||
380 | * Return project properties to be passed to js. |
||
381 | * |
||
382 | * @return array |
||
383 | */ |
||
384 | public function generateProps() |
||
393 | } |
||
394 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: