automatic regexp to move namespace CL\Chill => Chill

This commit is contained in:
2014-11-07 10:01:20 +01:00
parent 651577981c
commit f7d24ae520
31 changed files with 105 additions and 105 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace CL\Chill\PersonBundle\Entity;
namespace Chill\PersonBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\ExecutionContextInterface;
@@ -36,7 +36,7 @@ class PersonHistoryFile
private $memo = '';
/**
* @var \CL\Chill\PersonBundle\Entity\Person
* @var \Chill\PersonBundle\Entity\Person
*/
private $person;
@@ -176,11 +176,11 @@ class PersonHistoryFile
*
* For consistency, you should use Person::addHistoryFile instead.
*
* @param \CL\Chill\PersonBundle\Entity\Person $person
* @param \Chill\PersonBundle\Entity\Person $person
* @return PersonHistoryFile
* @see Person::addHistoryFile
*/
public function setPerson(\CL\Chill\PersonBundle\Entity\Person $person = null)
public function setPerson(\Chill\PersonBundle\Entity\Person $person = null)
{
$this->person = $person;
@@ -190,7 +190,7 @@ class PersonHistoryFile
/**
* Get person
*
* @return \CL\Chill\PersonBundle\Entity\Person
* @return \Chill\PersonBundle\Entity\Person
*/
public function getPerson()
{