Shift with red gradient lettering
Loading navigation...

Use ::class constant

PHP
Legacy Code

Convert class references from strings to static ::class constants built-in to PHP for improved code completion and static analysis.

Before

public function phone()
{
return $this->hasOne('Phone');
}

After

public function phone()
{
return $this->hasOne(Phone::class);
}

← Back to the Workbench Tasks