for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Benoth\StaticReflection\Reflection;
class ReflectionInterface extends ReflectionClassLike
{
use Parts\InterfaceTrait;
use Parts\ConstantTrait;
/**
* {@inheritdoc}
*/
public function isSubclassOf($className)
if (!is_string($className)) {
return false;
}
return $this->hasInterface($className);