Skip to content

Instantly share code, notes, and snippets.

@Hounddog
Created December 14, 2013 19:27
Show Gist options
  • Save Hounddog/7963721 to your computer and use it in GitHub Desktop.
Save Hounddog/7963721 to your computer and use it in GitHub Desktop.
return array(
'doctrine' => array(
'fixtures' => array(
'ModuleName_fixture' => __DIR__ . '/../src/Page/Fixture',
),
),
);
print_r($options['doctrine']['fixtures']);
Undefined index: fixtures
// config/autoload/test.local.php
<?php
return array(
'doctrine' => array(
'fixtures' => array(
'ModuleName_fixture' => __DIR__ . '/../src/Page/Fixture',
),
),
);
print_r($options['doctrine']['fixtures']);
Array
(
[ModuleName_fixture] => /var/www/config/autoload/../src/Page/Fixture
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment