Searched refs:BugRepository (Results 1 – 14 of 14) sorted by relevance
6 use App\Repository\BugRepository; alias22 $id = $container->get(BugRepository::class)->findRandom();
3 use App\Repository\BugRepository; alias33 $bugRepository = $container->get(BugRepository::class);
3 use App\Repository\BugRepository; alias28 if (!$container->get(BugRepository::class)->exists($id)) {
3 use App\Repository\BugRepository; alias30 $bugRepository = $container->get(BugRepository::class);
3 use App\Repository\BugRepository; alias23 $bugRepository = $container->get(BugRepository::class);
3 use App\Repository\BugRepository; alias41 $bugRepository = $container->get(BugRepository::class);
3 use App\Repository\BugRepository; alias46 $bugRepository = $container->get(BugRepository::class);
4 use App\Repository\BugRepository; alias134 $bugRepository = $container->get(BugRepository::class);
3 use App\Repository\BugRepository; alias19 $bugRepository = $container->get(BugRepository::class);
6 use App\Repository\BugRepository; alias19 foreach ($container->get(BugRepository::class)->findAllWithoutFeedback() as $bug)
4 use App\Repository\BugRepository; alias13 foreach ($container->get(BugRepository::class)->findAllAssigned() as $assigned => $binfos) {
28 $container->set(App\Repository\BugRepository::class, function ($c) {29 return new App\Repository\BugRepository($c->get(\PDO::class));
8 class BugRepository class
Completed in 13 milliseconds