mirror of
https://github.com/doctrine/doctrine-website.git
synced 2026-03-23 22:32:11 +01:00
14 lines
184 B
PHP
14 lines
184 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Website\DataSource;
|
|
|
|
interface DataSource
|
|
{
|
|
/**
|
|
* @return mixed[][]
|
|
*/
|
|
public function getSourceRows() : array;
|
|
}
|