Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / process / InputStream.php
index 831b10932599d4663e0dd157f6a5a3b261fdad8a..9bd917a7ef7cef309cad7ee2395f15534dea633d 100644 (file)
@@ -20,6 +20,7 @@ use Symfony\Component\Process\Exception\RuntimeException;
  */
 class InputStream implements \IteratorAggregate
 {
+    /** @var null|callable */
     private $onEmpty = null;
     private $input = array();
     private $open = true;
@@ -35,7 +36,8 @@ class InputStream implements \IteratorAggregate
     /**
      * Appends an input to the write buffer.
      *
-     * @param resource|scalar|\Traversable|null The input to append as stream resource, scalar or \Traversable
+     * @param resource|string|int|float|bool|\Traversable|null The input to append as scalar,
+     *                                                         stream resource or \Traversable
      */
     public function write($input)
     {