1 | <?php namespace Arcanesoft\Blog\Http\Requests\Admin\Posts; |
||
11 | class CreatePostRequest extends PostRequest |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Main Methods |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Determine if the user is authorized to make this request. |
||
20 | * |
||
21 | * @return bool |
||
22 | */ |
||
23 | public function authorize() |
||
27 | |||
28 | /** |
||
29 | * Get the validation rules that apply to the request. |
||
30 | * |
||
31 | * @return array |
||
32 | */ |
||
33 | public function rules() |
||
39 | |||
40 | /** |
||
41 | * Sanitize the inputs. |
||
42 | * |
||
43 | * @return array |
||
44 | */ |
||
45 | protected function sanitize() |
||
52 | } |
||
53 |
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.
Let’s take a look at an example:
Our function
my_function
expects aPost
object, and outputs the author of the post. The base classPost
returns a simple string and outputting a simple string will work just fine. However, the child classBlogPost
which is a sub-type ofPost
instead decided to return anobject
, and is therefore violating the SOLID principles. If aBlogPost
were passed tomy_function
, PHP would not complain, but ultimately fail when executing thestrtoupper
call in its body.