SensioLabs\DeprecationDetector\Finder\Result::fileCount PHP Метод

fileCount() публичный Метод

public fileCount ( )
    public function fileCount()
    {
        return $this->fileCount;
    }

Usage Example

 public function testFileCount()
 {
     $result = new Result(array(), array(), 10);
     $this->assertSame(10, $result->fileCount());
 }