]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
CS 2095/head
authorJeremy Benoist <jeremy.benoist@gmail.com>
Wed, 17 Aug 2016 12:18:28 +0000 (14:18 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Wed, 17 Aug 2016 12:36:20 +0000 (14:36 +0200)
src/Wallabag/CoreBundle/Form/DataTransformer/StringToListTransformer.php
src/Wallabag/CoreBundle/Form/Type/ConfigType.php
src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php

index b712ad152c13e1fc1d8a0830eb7b7978d41244ad..cb4bee83069562aa3caca4bced262dab32408dcf 100644 (file)
@@ -16,7 +16,7 @@ class StringToListTransformer implements DataTransformerInterface
     private $separator;
 
     /**
-     * @param string $separator The separator used in the list.
+     * @param string $separator The separator used in the list
      */
     public function __construct($separator = ',')
     {
index 74c53bf058d3825e39b0efdb005b6c0807622eb4..7d25cc80597a06c70544fba356c0d99101e916e4 100644 (file)
@@ -21,7 +21,9 @@ class ConfigType extends AbstractType
     {
         $this->themes = array_combine(
             $themes,
-            array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
+            array_map(function ($s) {
+                return ucwords(strtolower(str_replace('-', ' ', $s)));
+            }, $themes)
         );
 
         $this->languages = $languages;
index 14ef4a6411928b439e33b399bee866c40d2c2859..239d09ae7bd8ff7f13dd8aeb74d12884621476db 100644 (file)
@@ -25,7 +25,7 @@ class RuleBasedTagger
     /**
      * Add tags from rules defined by the user.
      *
-     * @param Entry $entry Entry to tag.
+     * @param Entry $entry Entry to tag
      */
     public function tag(Entry $entry)
     {
@@ -49,7 +49,7 @@ class RuleBasedTagger
      *
      * @param User $user
      *
-     * @return array<Entry> A list of modified entries.
+     * @return array<Entry> A list of modified entries
      */
     public function tagAllForUser(User $user)
     {
@@ -75,7 +75,7 @@ class RuleBasedTagger
     /**
      * Fetch a tag.
      *
-     * @param string $label The tag's label.
+     * @param string $label The tag's label
      *
      * @return Tag
      */