瀏覽代碼

Merge pull request #90 from codecowboy/master

Typo in property name
Marc Morera 11 年之前
父節點
當前提交
a351ef40fd
共有 3 個文件被更改,包括 16 次插入16 次删除
  1. 1 1
      .gitignore
  2. 14 14
      README.md
  3. 1 1
      Service/GearmanClient.php

+ 1 - 1
.gitignore

@@ -3,4 +3,4 @@ Tests/Functional/logs
 composer.lock
 composer.lock
 composer.phar
 composer.phar
 phpcs.log
 phpcs.log
-vendor
+vendor

+ 14 - 14
README.md

@@ -509,11 +509,11 @@ $jobIsRunning = $jobStatus->isRunning();
 $jobIsFinished = $jobStatus->isFinished();
 $jobIsFinished = $jobStatus->isFinished();
 
 
 /**
 /**
- * Also gives completition data
+ * Also gives completion data
  */
  */
 $completed = $jobStatus->getCompleted();
 $completed = $jobStatus->getCompleted();
-$completitionTotal = $jobStatus->getCompletitionTotal();
-$completitionPercent = $jobStatus->getCompletionPercent();
+$completionTotal = $jobStatus->getCompletionTotal();
+$completionPercent = $jobStatus->getCompletionPercent();
 ```
 ```
 
 
 Client
 Client
@@ -557,11 +557,11 @@ $result = $gearman
 * doHighJob: Call the job and wait for the result on High Preference
 * doHighJob: Call the job and wait for the result on High Preference
 * doLowJob: Call the job and wait for the result on Low Preference
 * doLowJob: Call the job and wait for the result on Low Preference
 * doBackroundJob: Call the job without waiting for the result.
 * doBackroundJob: Call the job without waiting for the result.
-    * It recieves a job handle for the submitted job
+    * It receives a job handle for the submitted job
 * doHighBackgroundJob: Call the job without waitting for the result on High Preference.
 * doHighBackgroundJob: Call the job without waitting for the result on High Preference.
-    * It recieves a job handle for the submitted job
+    * It receives a job handle for the submitted job
 * doLowBackgroundJob: Call the job without waitting for the result on Low Preference.
 * doLowBackgroundJob: Call the job without waitting for the result on Low Preference.
-    * It recieves a job handle for the submitted job
+    * It receives a job handle for the submitted job
 * callJob: Call the job with default method.
 * callJob: Call the job with default method.
     * Defined in settings, work annotations or the job annotations
     * Defined in settings, work annotations or the job annotations
 
 
@@ -588,7 +588,7 @@ $gearman
 GearmanBundle transforms Gearman callbacks to Symfony2 kernel events.
 GearmanBundle transforms Gearman callbacks to Symfony2 kernel events.
 
 
 ## Complete Callback
 ## Complete Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackCompleteEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as a parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackCompleteEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setCompleteCallback](http://www.php.net/manual/en/gearmanclient.setcompletecallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setCompleteCallback](http://www.php.net/manual/en/gearmanclient.setcompletecallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -600,7 +600,7 @@ services:
 ```
 ```
 
 
 ## Created Callback
 ## Created Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackCreatedEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as a parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackCreatedEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setCreatedCallback](http://www.php.net/manual/en/gearmanclient.setcreatedcallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setCreatedCallback](http://www.php.net/manual/en/gearmanclient.setcreatedcallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -612,7 +612,7 @@ services:
 ```
 ```
 
 
 ## Data Callback
 ## Data Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackDataEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as a parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackDataEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setDataCallback](http://www.php.net/manual/en/gearmanclient.setdatacallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setDataCallback](http://www.php.net/manual/en/gearmanclient.setdatacallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -624,7 +624,7 @@ services:
 ```
 ```
 
 
 ## Exception Callback
 ## Exception Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackExceptionEvent` with no methods.
+This event receives as a parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackExceptionEvent` with no methods.
 For more information about this GearmanEvent, read [GearmanClient::setExceptionCallback](http://www.php.net/manual/en/gearmanclient.setexceptioncallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setExceptionCallback](http://www.php.net/manual/en/gearmanclient.setexceptioncallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -636,7 +636,7 @@ services:
 ```
 ```
 
 
 ## Fail Callback
 ## Fail Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackFailEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as a parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackFailEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setFailCallback](http://www.php.net/manual/en/gearmanclient.setfailcallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setFailCallback](http://www.php.net/manual/en/gearmanclient.setfailcallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -648,7 +648,7 @@ services:
 ```
 ```
 
 
 ## Status Callback
 ## Status Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackFailEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as a parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackStatusEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setStatusCallback](http://www.php.net/manual/en/gearmanclient.setstatuscallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setStatusCallback](http://www.php.net/manual/en/gearmanclient.setstatuscallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -660,7 +660,7 @@ services:
 ```
 ```
 
 
 ## Warning Callback
 ## Warning Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackWarningEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackWarningEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setWarningCallback](http://www.php.net/manual/en/gearmanclient.setwarningcallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setWarningCallback](http://www.php.net/manual/en/gearmanclient.setwarningcallback.php) documentation.
 
 
 ``` yml
 ``` yml
@@ -672,7 +672,7 @@ services:
 ```
 ```
 
 
 ## Workload Callback
 ## Workload Callback
-This event recieves as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackWorkloadEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
+This event receives as parameter an instance of `Mmoreram\GearmanBundle\Event\GearmanClientCallbackWorkloadEvent` with one method `$event->getGearmanTask()`. This method returns an instance of `\GearmanTask`.
 For more information about this GearmanEvent, read [GearmanClient::setWorkloadCallback](http://www.php.net/manual/en/gearmanclient.setworkloadcallback.php) documentation.
 For more information about this GearmanEvent, read [GearmanClient::setWorkloadCallback](http://www.php.net/manual/en/gearmanclient.setworkloadcallback.php) documentation.
 
 
 ``` yml
 ``` yml

+ 1 - 1
Service/GearmanClient.php

@@ -26,7 +26,7 @@ class GearmanClient extends AbstractGearmanService
      *
      *
      * Gearman callbacks dispatcher
      * Gearman callbacks dispatcher
      */
      */
-    protected $gearmanCallbacksDisparcher;
+    protected $gearmanCallbacksDispatcher;
 
 
     /**
     /**
      * @var array
      * @var array