src/Traits/Ticketable.php
Method morphMany
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
abstract public function morphMany($related, $name, $type = null, $id = null, $localKey = null);
- Create a ticketCreate a ticket
Avoid unused parameters such as '$model'. Open
Open
static::saved(function (self $model) use ($bookings) {
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}