Knp\Bundle\KnpBundlesBundle\Github\Developer::import PHP Method

import() public method

{@inheritDoc}
public import ( $name, $update = true )
    public function import($name, $update = true)
    {
        $developer = new EntityDeveloper();
        $developer->setName($name);
        if ($update && !$this->update($developer)) {
            return false;
        }
        return $developer;
    }