mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 05:23:21 +00:00
21 lines
374 B
PHP
21 lines
374 B
PHP
<?php
|
|
|
|
namespace Repositories;
|
|
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
/**
|
|
* StoryWZRepository
|
|
*
|
|
* This class was generated by the Doctrine ORM. Add your own custom
|
|
* repository methods below.
|
|
*/
|
|
class StoryWZRepository extends EntityRepository
|
|
{
|
|
|
|
public function findByUser(\User_Adapter $user)
|
|
{
|
|
return $this->findBy(array('usr_id'=>$user->get_id()));
|
|
}
|
|
|
|
} |