Version 1
[yaffs-website] / web / core / modules / system / src / Tests / Database / FakeRecord.php
1 <?php
2
3 namespace Drupal\system\Tests\Database;
4
5 /**
6  * Fetches into a class.
7  *
8  * PDO supports using a new instance of an arbitrary class for records
9  * rather than just a stdClass or array. This class is for testing that
10  * functionality. (See testQueryFetchClass() below)
11  */
12 class FakeRecord { }