mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
20 lines
352 B
PHP
20 lines
352 B
PHP
|
<?php
|
||
|
namespace 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(){
|
||
|
$admin = new User();
|
||
|
$admin->getSource();
|
||
|
}
|
||
|
|
||
|
}
|