Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / console / Helper / TableCell.php
index a3064fc0981f6277ba792ba3090dfa98a107b56e..fb6c9fd37e1c7efcc07d87492f263d49eacb8a0c 100644 (file)
@@ -18,14 +18,7 @@ use Symfony\Component\Console\Exception\InvalidArgumentException;
  */
 class TableCell
 {
-    /**
-     * @var string
-     */
     private $value;
-
-    /**
-     * @var array
-     */
     private $options = array(
         'rowspan' => 1,
         'colspan' => 1,
@@ -37,7 +30,7 @@ class TableCell
      */
     public function __construct($value = '', array $options = array())
     {
-        if (is_numeric($value) && !is_string($value)) {
+        if (is_numeric($value) && !\is_string($value)) {
             $value = (string) $value;
         }