This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate
the same code in three or more different places, we strongly encourage you to
look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.
Loading history...
9
{
10
/**
11
* The course that user is not enrolled in.
12
*
13
* @var \App\Judite\Models\Course
14
*/
15
protected $course;
16
17
/**
18
* Create a new exception instance.
19
*
20
* @param \App\Judite\Models\Course $course
21
* @param string $message
22
*/
23
public function __construct(Course $course = null, $message = 'User is not enrolled in course.')
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.