You are here

FakeRecord.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/system/src/Tests/Database/FakeRecord.php

File

core/modules/system/src/Tests/Database/FakeRecord.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Database\FakeRecord.
 */
namespace Drupal\system\Tests\Database;


/**
 * Fetches into a class.
 *
 * PDO supports using a new instance of an arbitrary class for records
 * rather than just a stdClass or array. This class is for testing that
 * functionality. (See testQueryFetchClass() below)
 */
class FakeRecord {

}

Classes

Namesort descending Description
FakeRecord Fetches into a class.