Completed
Push — develop ( 4a8ee4...fc4253 )
by Eddie
9s
created
test/BreakfastSerializer/SerializerTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace BDBStudios\BreakfastSerializerTests;
4 4
 
5 5
 use BDBStudios\BreakfastSerializer\Serializer;
6
-use BDBStudios\BreakfastSerializerTest\Fixtures\ComplexClass;
7
-use BDBStudios\BreakfastSerializerTest\Fixtures\TypeHandlers\DateTimeType;
8 6
 
9 7
 class SerializerTest extends \PHPUnit_Framework_TestCase
10 8
 {
Please login to merge, or discard this patch.
src/BreakfastSerializer/Plugin/DateTime/IsDateTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     const ISO_STRING = '/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(-|\+)\d{4}$/';
12 12
 
13
-    const CONFIGURATION_KEY  = 'dateTime';
13
+    const CONFIGURATION_KEY = 'dateTime';
14 14
 
15 15
     /**
16 16
      * @param  mixed $value
Please login to merge, or discard this patch.
src/BreakfastSerializer/Plugin/PluginExecutionException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
  * Class PluginExecutionException
7 7
  * @package BDBStudios\BreakfastSerializer\Plugin
8 8
  */
9
-class PluginExecutionException extends \Exception{
9
+class PluginExecutionException extends \Exception {
10 10
 
11 11
 }
Please login to merge, or discard this patch.
test/BreakfastSerializer/Plugin/DateTime/DateTimeHandlerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $this->assertTrue(
26 26
             $this->plugin->isEnabledInConfiguration(
27 27
                 array(
28
-                    'typeHandler' => array (
28
+                    'typeHandler' => array(
29 29
                         DateTimeHandler::CONFIGURATION_KEY => true
30 30
                     )
31 31
                 )
Please login to merge, or discard this patch.