for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aminetiyal\LaravelTemplate\Components\Lte;
use Illuminate\View\Component;
class Styles extends Component
{
public $fonts = [];
public $styles = [];
public function __construct()
$this->fonts = config('template.assets.fonts');
config('template.assets.fonts')
*
array
$fonts
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..
$this->styles = config('template.assets.styles');
config('template.assets.styles')
$styles
}
public function render()
return view('template::lte.components._layouts.styles');
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..