Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Removed prefixed slashes from class names. The new versions of doctri…
Browse files Browse the repository at this point in the history
…ne seem to not enjoy them
  • Loading branch information
powturns committed Nov 21, 2016
1 parent ee9f2a1 commit 2eded04
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
return array(
'controller_plugins' => array(
'invokables' => array(
'entityManagerProvider' => '\DoctrineExtensions\Controller\Plugin\EntityManagerProviderPlugin',
'authenticatedUserProvider' => '\DoctrineExtensions\Controller\Plugin\AuthenticatedUserProviderPlugin',
'initForm' => '\DoctrineExtensions\Controller\Plugin\InitFormPlugin'
'entityManagerProvider' => 'DoctrineExtensions\Controller\Plugin\EntityManagerProviderPlugin',
'authenticatedUserProvider' => 'DoctrineExtensions\Controller\Plugin\AuthenticatedUserProviderPlugin',
'initForm' => 'DoctrineExtensions\Controller\Plugin\InitFormPlugin'
)
),

Expand All @@ -17,14 +17,14 @@
'configuration' => array (
'orm_default' => array (
'customHydrationModes' => array (
'column' => '\DoctrineExtensions\Hydrator\ColumnHydrator'
'column' => 'DoctrineExtensions\Hydrator\ColumnHydrator'
),

'types' => array(
'utc_datetime' => '\DoctrineExtensions\DBAL\Types\UTCDateTimeType'
'utc_datetime' => 'DoctrineExtensions\DBAL\Types\UTCDateTimeType'
),

'repositoryFactory' => '\DoctrineExtensions\ORM\SubclassRepositoryFactory',
'repositoryFactory' => 'DoctrineExtensions\ORM\SubclassRepositoryFactory',
),
)
),
Expand Down

0 comments on commit 2eded04

Please sign in to comment.