mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Adapted namespace
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
<?php
|
||||
namespace DataFixtures;
|
||||
|
||||
namespace App\DataFixtures;
|
||||
|
||||
use Doctrine\Bundle\FixturesBundle\Fixture;
|
||||
use Doctrine\Common\Persistence\ObjectManager;
|
||||
|
||||
use App\Entity\User;
|
||||
|
||||
class UsersFixtures extends Fixture
|
||||
{
|
||||
public function load(ObjectManager $manager)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function adminUser(){
|
||||
public function adminUser()
|
||||
{
|
||||
$admin = new User();
|
||||
$admin->getSource();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user