-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GearmanBundle] Fixed some broken code in git movements
- Loading branch information
Marc
committed
May 1, 2012
1 parent
038fc37
commit 5ac4e46
Showing
3 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.settings | ||
.buildpath | ||
.project | ||
project | ||
project/report/* | ||
lib/GearmanBundle/Resources/Sandbox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
find ./lib/Mmoreramerino/GearmanBundle/ | grep \.php | xargs -I {} phpcs {} > project/Reportings/codesniffer.log | ||
find ./lib/Mmoreramerino/GearmanBundle/ | grep \.php | xargs -I {} phpcs {} > project/report/codesniffer.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# Bundles gearman will parse searching annotations | ||
bundles: | ||
# Name of bundle | ||
GearmanBundle: | ||
# Namespace to be found | ||
namespace: Mmoreramerino\GearmanBundle | ||
# Bundle search can be enabled or disabled | ||
active: true | ||
|
||
# default values | ||
defaults: | ||
# default method. | ||
# do | ||
# doBackground | ||
# doHigh | ||
# doHighBackground | ||
# doLow | ||
# doLowBackground | ||
method: do | ||
|
||
# Server list by default workers and clients will connect | ||
# Server name must contain port | ||
# If annotations defined, will be overwritten | ||
servers: | ||
localhost: | ||
hostname: 127.0.0.1 | ||
port: 4730 | ||
|
||
# Default number of executions before job dies. | ||
# If annotations defined, will be overwritten | ||
iterations: 150 |