Skip to content

Instantly share code, notes, and snippets.

@bakura10
Created March 27, 2013 17:04
Show Gist options
  • Save bakura10/5256053 to your computer and use it in GitHub Desktop.
Save bakura10/5256053 to your computer and use it in GitHub Desktop.
return array(
'service_manager' => array(
// implicit invokable
'Application\Route\Resource' => 'Application\Route\Resource'
'Application\Route\Resource' => 'Application\Route\ResourceFactory',
// EXACTLY THE SAME AS ABOVE BUT MORE VERBOSE:
'Application\Route\Resource' => array(
'factory' => 'Application\Route\Resource'
),
// SAME BUT WITH OPTIONS
'Application\Route\Resource' => array(
'factory' => 'Application\Route\Resource',
'options' => array(
'foo' => bar
)
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment