Imbo\Model\Stats::getNumBytes PHP Method

getNumBytes() public method

Get the total amount of bytes
public getNumBytes ( ) : integer
return 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