Commit f271302c authored by catch's avatar catch
Browse files

Issue #3155411 by quietone, smustgrave, jungle, longwave: Add "writeable" to...

Issue #3155411 by quietone, smustgrave, jungle, longwave: Add "writeable" to the "flagWords" in core/.cspell.json

(cherry picked from commit c3e68680)
parent 653c5733
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -69,7 +69,8 @@
      "hte",
      "ist",
      "please",
      "queuing"
      "queuing",
      "writeable"
    ],
    "overrides": [
      {
+2 −2
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@

namespace Drupal\Tests;

// cspell:ignore datalen PSFS_FEED_ME writeable

/**
 * Captures output to a stream and stores it for retrieval.
 */
@@ -14,11 +16,9 @@ class StreamCapturer extends \php_user_filter {
  public function filter($in, $out, &$consumed, $closing): int {
    while ($bucket = stream_bucket_make_writeable($in)) {
      self::$cache .= $bucket->data;
      // cSpell:disable-next-line
      $consumed += $bucket->datalen;
      stream_bucket_append($out, $bucket);
    }
    // cSpell:disable-next-line
    return PSFS_FEED_ME;
  }