for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SixtyNine\Cloud\Model;
use JMS\Serializer\Annotation as JMS;
use SixtyNine\DataTypes\Box;
class CloudWord
{
/**
* @var int
* @JMS\Type("integer")
*/
protected $size;
protected $angle;
* @var string
* @JMS\Type("string")
protected $color;
protected $text;
* @var array
* @JMS\Type("array")
protected $position;
* @var Box
* @JMS\Type("SixtyNine\DataTypes\Box")
protected $box;
* @var bool
* @JMS\Type("boolean")
protected $isVisible;
* @var Cloud
* @JMS\Type("SixtyNine\Cloud\Model\Cloud")
protected $cloud;
* Set size
*
* @param integer $size
* @return CloudWord
public function setSize($size)
$this->size = $size;
return $this;
}
* Get size
* @return int
public function getSize()
return $this->size;
* @param \SixtyNine\Cloud\Model\Cloud $cloud
* @return $this
public function setCloud($cloud)
$this->cloud = $cloud;
* @return \SixtyNine\Cloud\Model\Cloud
public function getCloud()
return $this->cloud;
* @param array $position
public function setPosition($position)
$this->position = $position;
* @return array
public function getPosition()
return $this->position;
* @param boolean $isVisible
public function setIsVisible($isVisible)
$this->isVisible = $isVisible;
* @return boolean
public function getIsVisible()
return $this->isVisible;
* @param int $angle
public function setAngle($angle)
$this->angle = $angle;
public function getAngle()
return $this->angle;
* @param string $color
public function setColor($color)
$this->color = $color;
* @return string
public function getColor()
return $this->color;
* @param string $text
public function setText($text)
$this->text = $text;
public function getText()
return $this->text;
* @param Box $box
public function setBox($box)
$this->box = $box;
* @return Box
public function getBox()
return $this->box;