It seems like new Symfony\Component\Co...\Output\ConsoleOutput() of type Symfony\Component\Console\Output\ConsoleOutput is incompatible with the declared type Illuminate\Console\OutputStyle of property $output.
Our type inference engine has found an assignment to a property that is incompatible
with the declared type of that property.
Either this assignment is in error or the assigned type should be added
to the documentation/type hint for that property..
Loading history...
34
}
35
36
/**
37
* Execute the console command.
38
*
39
* @return mixed
40
*/
41
public function handle()
42
{
43
$students = DB::table('examination_students as es')
44
->select(DB::raw('count(*) as total'),'e2.*')
45
->join('examination_students as e2','es.nsid','e2.nsid')
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..