2022-09-11 23:41:31 +02:00
|
|
|
<?php
|
2022-11-29 21:21:26 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
2023-12-05 23:50:07 +01:00
|
|
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
2022-11-29 21:21:26 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2023-12-05 23:50:07 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Doctrine\Middleware;
|
2022-09-11 23:41:31 +02:00
|
|
|
|
|
|
|
use Doctrine\DBAL\Driver;
|
|
|
|
use Doctrine\DBAL\Driver\Middleware;
|
|
|
|
|
2023-12-05 23:50:07 +01:00
|
|
|
class SQLiteRegexExtensionMiddlewareWrapper implements Middleware
|
2022-09-11 23:41:31 +02:00
|
|
|
{
|
|
|
|
public function wrap(Driver $driver): Driver
|
|
|
|
{
|
2023-12-05 23:50:07 +01:00
|
|
|
return new SQLiteRegexExtensionMiddlewareDriver($driver);
|
2022-09-11 23:41:31 +02:00
|
|
|
}
|
2023-12-05 23:50:07 +01:00
|
|
|
}
|