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 None
*
* @package Crossjoin\Browscap\PropertyFilter
* @author Christoph Ziegenberg <[email protected]>
* @link https://github.com/crossjoin/browscap
*/
class None implements PropertyFilterInterface
{
* @inheritdoc
public function isFiltered(string $property) : bool
return false;
}
public function getProperties() : array
return [];