示例#1
0
 /**
  * Returns the width in pixels if the rendition is an image.
  *
  * @return integer the width in pixels or -1 if the width is not available or the rendition is not an image
  */
 public function getWidth()
 {
     return parent::getWidth() ?: -1;
 }
 /**
  * @depends testSetWidthSetsPropertyAsInteger
  */
 public function testGetWidthReturnsPropertyValue()
 {
     $this->renditionData->setWidth(10);
     $this->assertSame(10, $this->renditionData->getWidth());
 }