pdo-document/tests/integration/SubDocument.php
Daniel J. Summers 1ab961e35a Change PDO to singleton instance
- Add SQLite throwaway DB implementation
- Add integration tests for Custom class
2024-06-07 22:14:17 -04:00

12 lines
207 B
PHP

<?php declare(strict_types=1);
namespace Test\Integration;
/**
* A sub-document for testing
*/
class SubDocument
{
public function __construct(public string $foo = '', public string $bar = '') { }
}