for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Crossjoin\Browscap\PropertyFilter;
/**
* Class Disallowed
*
* @package Crossjoin\Browscap\PropertyFilter
* @author Christoph Ziegenberg <[email protected]>
* @link https://github.com/crossjoin/browscap
*/
class Disallowed extends PropertyAbstract
{
* @inheritdoc
public function isFiltered(string $property) : bool
return in_array(strtolower($property), $this->getProperties(), true);
}