for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the AMFConsoleBundle.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace AMF\ConsoleBundle\Form\Model;
/**
* Model class for argument.
* @author Amine Fattouch <[email protected]>
class Argument
{
* @var string
private $name;
private $value;
* Getter for field name.
* @return string
public function getName()
return $this->name;
}
* Setter for field name.
* @param string $name
* @return self
public function setName($name = null)
$this->name = $name;
return $this;
* Getter for field value.
public function getValue()
return $this->value;
* Setter for field value.
* @param string $value
public function setValue($value = null)
$this->value = $value;