1 | <?php |
||
8 | class JdSignAuth extends AuthMethod |
||
9 | { |
||
10 | public $realm = 'api'; |
||
11 | public $auth; |
||
12 | |||
13 | /** |
||
14 | * @inheritdoc |
||
15 | */ |
||
16 | public function authenticate($user, $request, $response) |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | public function challenge($response) |
||
38 | |||
39 | /** |
||
40 | * 生成签名验证串sign |
||
41 | * @param array $params post或get请求的请求参数数组 |
||
42 | * @return string sign签名验证串 |
||
43 | */ |
||
44 | public function createSign($params) |
||
51 | } |
||
52 |
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.