Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / Struct.php
1 <?php
2 class Struct
3 {
4     public $var;
5
6     public function __construct($var)
7     {
8         $this->var = $var;
9     }
10 }