for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kaliop\eZMigrationBundle\Core;
/**
* NB: needs a class member 'repository'
*/
trait RepositoryUserSetterTrait
{
* Helper method to log in a user that can make changes to the system.
* @param int $userId
* @return int id of the previously logged in user
protected function loginUser($userId)
$previousUser = $this->repository->getCurrentUser();
repository
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
class MyClass { } $x = new MyClass(); $x->foo = true;
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:
class MyClass { public $foo; } $x = new MyClass(); $x->foo = true;
if ($userId != $previousUser->id) {
$this->repository->setCurrentUser($this->repository->getUserService()->loadUser($userId));
}
return $previousUser->id;
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: