]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Form/DataTransformer/StringToListTransformer.php
php cs
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / DataTransformer / StringToListTransformer.php
index 23488d3538fc6d09339e315b20b9dfc80adc2a13..b712ad152c13e1fc1d8a0830eb7b7978d41244ad 100644 (file)
@@ -2,13 +2,11 @@
 
 namespace Wallabag\CoreBundle\Form\DataTransformer;
 
-use Doctrine\Common\Persistence\ObjectManager;
 use Symfony\Component\Form\DataTransformerInterface;
-use Symfony\Component\Form\Exception\TransformationFailedException;
 
 /**
  * Transforms a comma-separated list to a proper PHP array.
- * Example: the string "foo, bar" will become the array ["foo", "bar"]
+ * Example: the string "foo, bar" will become the array ["foo", "bar"].
  */
 class StringToListTransformer implements DataTransformerInterface
 {
@@ -44,14 +42,14 @@ class StringToListTransformer implements DataTransformerInterface
     /**
      * Transforms a string to a list.
      *
-     * @param  string $string
+     * @param string $string
      *
      * @return array|null
      */
     public function reverseTransform($string)
     {
         if ($string === null) {
-            return null;
+            return;
         }
 
         return array_values(array_filter(array_map('trim', explode($this->separator, $string))));