for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lagdo\DbAdmin\Driver\Utils;
class Utils
{
/**
* @var TranslatorInterface
*/
public $trans;
* @var Input
public $input;
* @var Str
public $str;
* @var History
public $history;
* @param TranslatorInterface $trans
* @param Input $input
* @param Str $str
* @param History $history
public function __construct(TranslatorInterface $trans, Input $input, Str $str, History $history)
$this->trans = $trans;
$this->input = $input;
$this->str = $str;
$str
Lagdo\DbAdmin\Driver\Utils\Str
string
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->history = $history;
}
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..