FakeRecord.php

Definition of Drupal\system\Tests\Database\FakeRecord.

Namespace

Drupal\system\Tests\Database

File

drupal/core/modules/system/lib/Drupal/system/Tests/Database/FakeRecord.php
View source
<?php

/**
 * @file
 * Definition of 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.