getBannedFunctions() public method

public getBannedFunctions ( ) : string[]
return string[]
 public function testFunctionRequirements()
 {
     $e = new ExceptionalCoding($this->filesystem, $this->faker);
     $this->assertEquals([], $e->getRequiredFunctions());
     $this->assertEquals(['array_filter', 'file_exists'], $e->getBannedFunctions());
 }