for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Db\Oracle;
use Yiisoft\Db\Schema\Quoter as BaseQuoter;
use Yiisoft\Db\Schema\QuoterInterface;
use function str_contains;
final class Quoter extends BaseQuoter implements QuoterInterface
{
public function quoteSimpleTableName(string $name): string
return str_contains($name, '"') ? $name : '"' . $name . '"';
}