c656de829e5c803013a74f8beb78be5d7c185de4
[yaffs-website] / web / modules / contrib / video_embed_field / tests / src / Kernel / StripWhitespaceTrait.php
1 <?php
2
3 namespace Drupal\Tests\video_embed_field\Kernel;
4
5 /**
6  * Strip whitespace.
7  */
8 trait StripWhitespaceTrait {
9
10   /**
11    * Remove HTML whitespace from a string.
12    *
13    * @param string $string
14    *   The input string.
15    *
16    * @return string
17    *   The whitespace cleaned string.
18    */
19   protected function stripWhitespace($string) {
20     $no_whitespace = preg_replace('/\s{2,}/', '', $string);
21     $no_whitespace = str_replace("\n", '', $no_whitespace);
22     return $no_whitespace;
23   }
24
25 }