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
 /**
  * @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