| 1 | <?php |
||
| 16 | class ProviderRecord extends AbstractProvider implements ProviderInterface |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The table alias |
||
| 21 | */ |
||
| 22 | const TABLE_ALIAS = 'saml_sp_providers'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritdoc |
||
| 26 | */ |
||
| 27 | 6 | public function getLoginRequestPath() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritdoc |
||
| 43 | */ |
||
| 44 | 6 | public function getLogoutRequestPath() |
|
| 57 | /** |
||
| 58 | * @inheritdoc |
||
| 59 | */ |
||
| 60 | 21 | public function getLoginPath() |
|
| 73 | |||
| 74 | /** |
||
| 75 | * @inheritdoc |
||
| 76 | */ |
||
| 77 | 6 | public function getLogoutPath() |
|
| 90 | } |
||
| 91 |
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.