This commit is contained in:
Nicolas Le Goff
2011-12-19 19:08:20 +01:00
parent 9a7c326d6c
commit d4367e0944
4 changed files with 233 additions and 35 deletions

View File

@@ -0,0 +1,30 @@
<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2010 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @package
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
namespace PhraseaFixture;
class AbstractUser
{
protected $user;
public function __construct(\User_Adapter $user)
{
$this->user = $user;
}
}