PHP Classes

File: tests/SingleTest.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   EasyDB   tests/SingleTest.php   Download  
File: tests/SingleTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: EasyDB
Simple Database Abstraction Layer around PDO
Author: By
Last change: single-lining test classes after composer run fix-style
running composer run fix-style
Date: 6 years ago
Size: 280 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

namespace
ParagonIE\EasyDB\Tests;

use
ParagonIE\EasyDB\EasyDB;

class
SingleTest extends CellTest
{
    protected function
getResultForMethod(EasyDB $db, $statement, $offset, $params)
    {
        return
$db->single($statement, $params);
    }
}