Skip to content

Instantly share code, notes, and snippets.

@basz
Forked from bakura10/foo.php
Created January 4, 2014 23:18
Show Gist options
  • Save basz/8262119 to your computer and use it in GitHub Desktop.
Save basz/8262119 to your computer and use it in GitHub Desktop.
// Before:
return [
'slm_queue' => [
'worker' => [
'max_runs' => 500
],
'queue_manager' => [
'factories' => [
'foo' => 'bar'
]
]
]
]
// After:
return [
'slm_queue' => [
'options' => [
'worker' => [
'max_runs' => 500
],
]
'queue_manager' => [
'factories' => [
'foo' => 'bar'
]
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment