| 1 | <?php |
||
| 9 | class DBALWebsiteLookupService implements WebsiteLookupServiceInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var Connection |
||
| 13 | */ |
||
| 14 | private $connection; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $tableName; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param Connection $connection |
||
| 23 | * @param string $tableName |
||
| 24 | */ |
||
| 25 | public function __construct( |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @inheritdoc |
||
| 35 | */ |
||
| 36 | public function lookup(Url $url) |
||
| 50 | } |
||
| 51 |