This check compares the return type specified in the @return annotation of a function
or method doc comment with the types returned by the function and raises an issue if they
mismatch.
Loading history...
23
*
24
* @throws UnknownContainerException
25
*/
26
public function create($container)
27
{
28
$class = '';
29
30
foreach ($this->config as $containerClass => $configuratorClass) {
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.