for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* @author ostico [email protected] / [email protected]
* Date: 02/03/22
* Time: 18:39
*
*/
namespace Matecat\SubFiltering\Commons;
use Matecat\SubFiltering\Contracts\FeatureSetInterface;
* Used from sources which want not to implement a custom object from this package
class EmptyFeatureSet implements FeatureSetInterface {
* @inheritDoc
public function filter( $method, $filterable ) {
return $filterable;
}