for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Reflection\ClassUseStatements;
use \ArrayObject;
/**
* Class UseStatements
* @package UsesReflection
*/
class UseStatements extends ArrayObject {
* @param UseStatement $useStatement
* @return UseStatements
public function add(UseStatement $useStatement): UseStatements {
$this->append($useStatement);
return $this;
}
* @param string $class
* @return string|null
public function getFullClassName(string $class): ?string {
$class
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return null;
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.