Imbo\Model\Stats::getNumBytes PHP 메소드

getNumBytes() 공개 메소드

Get the total amount of bytes
public getNumBytes ( ) : integer
리턴 integer
    public function getNumBytes()
    {
        return $this->numBytes;
    }

Usage Example

예제 #1
0
파일: StatsTest.php 프로젝트: ASP96/imbo
 /**
  * @dataProvider getUsers
  * @covers Imbo\Model\Stats::getNumBytes
  */
 public function testCanGetTotalAmountOfBytes(array $users, $numUsers, $images, $bytes)
 {
     $this->model->setUsers($users);
     $this->assertSame($bytes, $this->model->getNumBytes());
 }
All Usage Examples Of Imbo\Model\Stats::getNumBytes