Completed
Pull Request — master (#19)
by
unknown
10:53
created
Service/TwilioWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @return \Services_Twilio
34 34
      */
35
-    public function createInstance($sid ,$token, $version = null, $retryAttempts = 1)
35
+    public function createInstance($sid, $token, $version = null, $retryAttempts = 1)
36 36
     {
37 37
         return new \Services_Twilio($sid, $token, $version, null, $retryAttempts);
38 38
     }
Please login to merge, or discard this patch.
Tests/DependencyInjection/ConfigurationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function testYamlFile()
40 40
     {
41 41
         $yaml = new Parser();
42
-        $config = $yaml->parse(file_get_contents(realpath(__DIR__ . '/../../Resources/config/services.yml')));
42
+        $config = $yaml->parse(file_get_contents(realpath(__DIR__.'/../../Resources/config/services.yml')));
43 43
         //validate config
44 44
         $this->assertArrayHasKey('parameters', $config);
45 45
         $this->assertArrayHasKey('services', $config);
Please login to merge, or discard this patch.