for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/shopify-api-php
*
* (c) Slince <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Slince\Shopify\Manager\SmartCollection;
class SmartCollectionImage
{
/**
* @var string
protected $src;
* @var int
protected $width;
protected $height;
* @var \DateTimeInterface
protected $createdAt;
* @return string
public function getSrc()
return $this->src;
}
* @param string $src
* @return CustomCollectionImage
public function setSrc($src)
$this->src = $src;
return $this;
* @return int
public function getWidth()
return $this->width;
* @param int $width
public function setWidth($width)
$this->width = $width;
public function getHeight()
return $this->height;
* @param int $height
public function setHeight($height)
$this->height = $height;
* @return \DateTimeInterface
public function getCreatedAt()
return $this->createdAt;
* @param \DateTimeInterface $createdAt
public function setCreatedAt($createdAt)
$this->createdAt = $createdAt;