SensioLabs\DeprecationDetector\Configuration\Configuration::filteredMethodCalls PHP Method

filteredMethodCalls() public method

public filteredMethodCalls ( ) : string
return string
    public function filteredMethodCalls()
    {
        return $this->filterMethodCalls;
    }

Usage Example

 public function testRuleSet()
 {
     $configuration = new Configuration('path/to/rule_set', 'path/to/container.xml', true, 'path/to/cache/dir/', '', true, true, 'html.log');
     $this->assertEquals('path/to/rule_set', $configuration->ruleSet());
     $this->assertEquals('path/to/container.xml', $configuration->containerPath());
     $this->assertTrue($configuration->useCachedRuleSet());
     $this->assertEquals('path/to/cache/dir/', $configuration->ruleSetCacheDir());
     $this->assertEquals('', $configuration->filteredMethodCalls());
     $this->assertTrue($configuration->failOnDeprecation());
     $this->assertTrue($configuration->isVerbose());
     $this->assertEquals('html.log', $configuration->logHtml());
 }
All Usage Examples Of SensioLabs\DeprecationDetector\Configuration\Configuration::filteredMethodCalls