for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* (c) Wessel Strengholt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Usoft\IDealBundle\Model;
/**
* Class Bank
* @author Wessel Strengholt <[email protected]>
class Bank
{
/** @var string */
private $id;
private $name;
* @param string $id
* @param string $name
public function __construct($id, $name)
$this->id = $id;
$this->name = $name;
}
* @return string
public function getId()
return $this->id;
public function getName()
return $this->name;