Completed
Push — master ( c9ff7a...90cf7c )
by Tobias
28:22 queued 18:22
created
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
             ->arrayNode('source')
23 23
                 ->prototype('scalar')
24 24
                 ->validate()
25
-                ->always(function ($v) {
25
+                ->always(function($v) {
26 26
                     $v = str_replace(DIRECTORY_SEPARATOR, '/', $v);
27 27
 
28 28
                     if (!is_dir($v)) {
Please login to merge, or discard this patch.
Metadata/AnnotationReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function getMetadata()
49 49
     {
50 50
         // Create a function to filter out our annotations
51
-        $filterAnnotations = function ($annotation) {
51
+        $filterAnnotations = function($annotation) {
52 52
             return $annotation instanceof SerializerAnnotation;
53 53
         };
54 54
 
Please login to merge, or discard this patch.
Normalizer/MetadataAwareNormalizer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Happyr\SerializerBundle\Normalizer;
4 4
 
5 5
 use Happyr\SerializerBundle\Annotation\ExclusionPolicy;
6
-use Happyr\SerializerBundle\Metadata\Metadata;
7 6
 use Happyr\SerializerBundle\PropertyManager\AttributeExtractor;
8 7
 use Happyr\SerializerBundle\PropertyManager\ReflectionPropertyAccess;
9 8
 use Happyr\SerializerBundle\PropertyManager\PropertyNameConverter;
Please login to merge, or discard this patch.
PropertyManager/AttributeExtractor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,9 +83,9 @@
 block discarded – undo
83 83
     /**
84 84
      * Get a good cache key for this class.
85 85
      *
86
-     * @param $class
86
+     * @param string $class
87 87
      *
88
-     * @return bool|string
88
+     * @return string|false
89 89
      */
90 90
     private function getCacheKey($class)
91 91
     {
Please login to merge, or discard this patch.
Normalizer/MetadataAwareDenormalizer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Happyr\SerializerBundle\Normalizer;
4 4
 
5 5
 use Happyr\SerializerBundle\Annotation\ExclusionPolicy;
6
-use Happyr\SerializerBundle\Metadata\Metadata;
7 6
 use Happyr\SerializerBundle\PropertyManager\AttributeExtractor;
8 7
 use Happyr\SerializerBundle\PropertyManager\ReflectionPropertyAccess;
9 8
 use Happyr\SerializerBundle\PropertyManager\PropertyNameConverter;
Please login to merge, or discard this patch.