Skip to content

Commit

Permalink
update configuration definition, fixes #27
Browse files Browse the repository at this point in the history
* use an `integer` default value for an `integer` node instead of a
  `string`
* fix a typo
  • Loading branch information
xabbuh committed Jan 17, 2015
1 parent 54f7db7 commit 041f6ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function getConfigTreeBuilder()
->info('The name displayed as the title of the administration zone (e.g. comapny name, project name).')
->end()
->integerNode('list_max_results')
->defaultValue('15')
->defaultValue(15)
->info('The maximum number of items to show on listing and search pages.')
->end()
->arrayNode('assets')
Expand All @@ -44,7 +44,7 @@ public function getConfigTreeBuilder()
->end()
->end()
->variableNode('list_actions')
->info('The actions to show for each item of listing and search pages. Only "edit" and "show" options are avaialable.')
->info('The actions to show for each item of listing and search pages. Only "edit" and "show" options are available.')
->example(array('edit', 'show'))
->end()
->variableNode('entities')
Expand Down

0 comments on commit 041f6ff

Please sign in to comment.