We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 22 | class Redirect extends EloquentModel |
||
| 23 | { |
||
| 24 | |||
| 25 | /* |
||
| 26 | * Laravel Deleting. |
||
| 27 | * @ https://laravel.com/docs/5.5/eloquent#soft-deleting |
||
| 28 | */ |
||
| 29 | use SoftDeletes; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * The table associated with the model. |
||
| 33 | * |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | protected $table = 'redirects'; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * The table date columns, casted to Carbon. |
||
| 40 | * |
||
| 41 | * @var array |
||
| 42 | */ |
||
| 43 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
||
| 44 | |||
| 45 | |||
| 46 | |||
| 47 | public function from() |
||
| 55 | |||
| 56 | public function setFrom($string) |
||
| 62 | |||
| 63 | public function to() |
||
| 71 | |||
| 72 | public function setTo($string) |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @param int $integer |
||
| 81 | * @return $this |
||
| 82 | */ |
||
| 83 | public function setCreatorID(int $integer) |
||
| 89 | |||
| 90 | public function creator() |
||
| 94 | |||
| 95 | public function modifier() |
||
| 101 | |||
| 102 | public function deleted_at() |
||
| 106 | |||
| 107 | public function updated_at() |
||
| 111 | |||
| 112 | public function created_at() |
||
| 116 | |||
| 117 | public function isEnabled() |
||
| 121 | |||
| 122 | public function lastEditor() |
||
| 126 | |||
| 127 | /** |
||
| 128 | * @return Page|mixed |
||
| 129 | */ |
||
| 130 | public function fromPage() |
||
| 134 | |||
| 135 | /** |
||
| 136 | * @return Page|mixed |
||
| 137 | */ |
||
| 138 | public function toPage() |
||
| 142 | } |
||
| 143 |
This check looks for method names that are not written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection seeker becomes
databaseConnectionSeeker.