| @@ -22,7 +22,7 @@ | ||
| 22 | 22 | $config = $this->processConfiguration($configuration, $configs); | 
| 23 | 23 | $loader = new Loader\YamlFileLoader( | 
| 24 | 24 | $container, | 
| 25 | - new FileLocator(__DIR__ . '/../Resources/config') | |
| 25 | + new FileLocator(__DIR__.'/../Resources/config') | |
| 26 | 26 | ); | 
| 27 | 27 |          $loader->load('services.yml'); | 
| 28 | 28 | |
| @@ -42,7 +42,7 @@ discard block | ||
| 42 | 42 | /** | 
| 43 | 43 | * Inject the defined service in the unit of work | 
| 44 | 44 | * | 
| 45 | - * @param ContainerBuilder $container | |
| 45 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 46 | 46 | * @param string $service | 
| 47 | 47 | * | 
| 48 | 48 | * @return self | 
| @@ -61,7 +61,7 @@ discard block | ||
| 61 | 61 | /** | 
| 62 | 62 | * Inject value objects to make the connection work | 
| 63 | 63 | * | 
| 64 | - * @param ContainerBuilder $container | |
| 64 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 65 | 65 | * @param array $config | 
| 66 | 66 | * | 
| 67 | 67 | * @return self | 
| @@ -89,7 +89,7 @@ discard block | ||
| 89 | 89 | /** | 
| 90 | 90 | * Register the classes as added property types | 
| 91 | 91 | * | 
| 92 | - * @param ContainerBuilder $container | |
| 92 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 93 | 93 | * @param array $types | 
| 94 | 94 | * | 
| 95 | 95 | * @return self | 
| @@ -110,7 +110,7 @@ discard block | ||
| 110 | 110 | /** | 
| 111 | 111 | * Inject the configuration object into the metadata builder | 
| 112 | 112 | * | 
| 113 | - * @param ContainerBuilder $container | |
| 113 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 114 | 114 | * @param string $config | 
| 115 | 115 | * | 
| 116 | 116 | * @return self | 
| @@ -129,7 +129,7 @@ discard block | ||
| 129 | 129 | /** | 
| 130 | 130 | * Inject the clock in the transactions service | 
| 131 | 131 | * | 
| 132 | - * @param ContainerBuilder $container | |
| 132 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 133 | 133 | * @param string $clock | 
| 134 | 134 | * | 
| 135 | 135 | * @return self | 
| @@ -148,7 +148,7 @@ discard block | ||
| 148 | 148 | /** | 
| 149 | 149 | * Create the alias for the event bus | 
| 150 | 150 | * | 
| 151 | - * @param ContainerBuilder $container | |
| 151 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 152 | 152 | * @param string $eventBus | 
| 153 | 153 | * | 
| 154 | 154 | * @return self | 
| @@ -165,7 +165,7 @@ discard block | ||
| 165 | 165 | /** | 
| 166 | 166 | * Create the alias for dbal connection | 
| 167 | 167 | * | 
| 168 | - * @param ContainerBuilder $container | |
| 168 | + * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | |
| 169 | 169 | * @param string $connection | 
| 170 | 170 | * | 
| 171 | 171 | * @return self | 
| @@ -16,11 +16,11 @@ | ||
| 16 | 16 | /** | 
| 17 | 17 | * Create a new metadata builder | 
| 18 | 18 | * | 
| 19 | - * @param Types $types | |
| 19 | + * @param \Innmind\Neo4j\ONM\Types $types | |
| 20 | 20 | * @param array $factories | 
| 21 | 21 | * @param ConfigurationInterface $config | 
| 22 | 22 | * | 
| 23 | - * @return MetadataBuilder | |
| 23 | + * @return \Innmind\Neo4j\ONM\MetadataBuilder | |
| 24 | 24 | */ | 
| 25 | 25 | public static function make( | 
| 26 | 26 | Types $types, | 
| @@ -25,7 +25,7 @@ discard block | ||
| 25 | 25 | * Register a newrepository for the given entity class | 
| 26 | 26 | * | 
| 27 | 27 | * @param string $class | 
| 28 | - * @param Repository $repository | |
| 28 | + * @param \Innmind\Neo4j\ONM\Repository $repository | |
| 29 | 29 | * | 
| 30 | 30 | * @return self | 
| 31 | 31 | */ | 
| @@ -39,9 +39,9 @@ discard block | ||
| 39 | 39 | /** | 
| 40 | 40 | * Inject registered repositories into the given repository factory | 
| 41 | 41 | * | 
| 42 | - * @param RepositoryFactory $factory | |
| 42 | + * @param \Innmind\Neo4j\ONM\RepositoryFactory $factory | |
| 43 | 43 | * | 
| 44 | - * @return RepositoryFactory | |
| 44 | + * @return \Innmind\Neo4j\ONM\RepositoryFactory | |
| 45 | 45 | */ | 
| 46 | 46 | public function configure(RepositoryFactory $factory): RepositoryFactory | 
| 47 | 47 |      { |