getThumbnails() public method

public getThumbnails ( ) : array
return array
Example #1
0
 /**
  * {@inheritdoc}
  *
  * @VirtualProperty
  */
 public function getImage()
 {
     if (!array_key_exists('50x50', $thumbnails = $this->entity->getThumbnails())) {
         return;
     }
     return $thumbnails['50x50'];
 }