for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DeepCopy\TypeMatcher;
/**
* TypeMatcher class
*/
class TypeMatcher
{
* @var string
private $type;
* @param string $type
public function __construct($type)
$this->type = $type;
}
* @param $element
* @return boolean
public function matches($element)
return is_object($element) ? is_a($element, $this->type) : gettype($element) === $this->type;