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

Commit

Permalink
Make sure configuration is PHP 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
veewee committed Jan 16, 2015
1 parent f5c983f commit e7731d7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ return array(
'use_generated_hydrator' => true,
'naming_strategy' => 'custom.naming.strategy.key.in.servicemanager',
'hydrator' => 'custom.hydrator.key.in.hydratormanager',
'strategies' => [
'strategies' => array(
'fieldname' => 'custom.strategy.key.in.servicemanager',
],
'filters' => [
'custom_filter_name' => [
),
'filters' => array(
'custom_filter_name' => array(
'condition' => 'and', // optional, default is 'or'
'filter' => 'custom.hydrator.filter.key.in.servicemanager',
],
],
),
),
),
),
);
Expand Down Expand Up @@ -81,12 +81,12 @@ return array(
'doctrine-hydrator' => array(
'custom-hydrator' => array(
// other config
'filters' => [
'custom.filter.name' => [
'filters' => array(
'custom.filter.name' => array(
'condition' => 'and', //optional, default: FilterComposite::CONDITION_OR,
'filter' => 'custom.filter', // a name in the Service Manager
],
],
),
),
),
),
);
Expand Down

0 comments on commit e7731d7

Please sign in to comment.