for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gamer\Services\Points;
use Gamer\Entitys\Points\Type;
class PageService
{
protected $type = false;
public function __construct(Type $type)
$this->type = $type;
$type
object<Gamer\Entitys\Points\Type>
boolean
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..
}
public static function getService(Type $type)
return new static($type);
public function getView()
return view('gamer::pages.points.index');
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..