bbe1d6a191af9874367daaf59e82254c950e8b21
[yaffs-website] / LonelyMonkeyClass.php
1 <?php
2
3 namespace Drupal\error_service_test;
4
5 use Drupal\Core\Database\Connection;
6
7 /**
8  * A class with a single dependency.
9  */
10 class LonelyMonkeyClass {
11
12   public function __construct(Connection $connection) {
13     $this->connection = $connection;
14   }
15
16 }