for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @year 2016
* @link https://github.com/nnx-framework/cloner
* @author Lobanov Aleksandr <[email protected]>
*/
namespace Nnx\Cloner\Options\Cloner;
use Zend\Stdlib\AbstractOptions;
* Class RelationOptions
*
* @package Nnx\Cloner\Options
class RelationOptions extends AbstractOptions
{
* @var string название клонера для получения из ClonerManagerInterface
private $clonerName;
* @return string
public function getClonerName()
return $this->clonerName;
}
* @param string $clonerName
* @return $this
public function setClonerName($clonerName)
$this->clonerName = $clonerName;
return $this;