SQL Inventory

List of all SQL mentioned in the code..

ValueCountFile:Line
'SELECT class, username, value, lastUsed AS last_used FROM rememberme_token WHERE series=:series'1
  • /src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php
'DELETE FROM rememberme_token WHERE series=:series'1
  • /src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php
'UPDATE rememberme_token SET value=:value, lastUsed=:lastUsed WHERE series=:series'1
  • /src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php
'INSERT INTO rememberme_token (class, username, series, value, lastUsed) VALUES (:class, :username, :series, :value, :lastUsed)'1
  • /src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php
'SELECT * FROM table3'1
  • /src/Symfony/Bridge/Doctrine/Tests/DataCollector/DoctrineDataCollectorTest.php
<<<EOT INSERT INTO products(name, price, stock, picture, tags, created_at) VALUES (?, ?, ?, ?, ?, ?) EOT1
  • /src/Symfony/Bridge/Doctrine/Tests/Middleware/Debug/MiddlewareTest.php
<<<EOT INSERT INTO products(name, price, stock, picture, tags) VALUES (?, ?, ?, ?, ?) EOT1
  • /src/Symfony/Bridge/Doctrine/Tests/Middleware/Debug/MiddlewareTest.php
'SELECT 1'1
  • /src/Symfony/Bridge/Doctrine/Tests/Messenger/DoctrinePingConnectionMiddlewareTest.php
'Show deprecations as errors'1
  • /src/Symfony/Bridge/Twig/Command/LintCommand.php
'Show a list of twig functions, filters, globals and tests'1
  • /src/Symfony/Bridge/Twig/Command/DebugCommand.php
'Show details for all entries matching this filter'1
  • /src/Symfony/Bridge/Twig/Command/DebugCommand.php
'Show all classes even if they have no validation constraints'1
  • /src/Symfony/Component/Validator/Command/DebugCommand.php
'SELECT COUNT(*) FROM cache_items'1
  • /src/Symfony/Component/Cache/Tests/Adapter/PdoAdapterTest.php
'SELECT 1 FROM cache_items WHERE item_id LIKE :id'1
  • /src/Symfony/Component/Cache/Tests/Adapter/PdoAdapterTest.php
'SELECT 1 FROM cache_items WHERE item_id LIKE ?'1
  • /src/Symfony/Component/Cache/Tests/Adapter/DoctrineDbalAdapterTest.php
"DELETE FROM $this->table WHERE $this->lifetimeCol + $this->timeCol <= :time"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"SELECT $this->idCol, CASE WHEN $this->lifetimeCol IS NULL OR $this->lifetimeCol + $this->timeCol > ? THEN $this->dataCol ELSE NULL END FROM $this->table WHERE $this->idCol IN ($sql)"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"DELETE FROM $this->table WHERE $this->lifetimeCol + $this->timeCol <= ? AND $this->idCol IN ($sql)"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"SELECT 1 FROM $this->table WHERE $this->idCol = :id AND ($this->lifetimeCol IS NULL OR $this->lifetimeCol + $this->timeCol > :time)"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"DELETE FROM $this->table"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"DELETE FROM $this->table WHERE $this->idCol IN ($sql)"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :lifetime, :time)"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"UPDATE $this->table SET $this->dataCol = :data, $this->lifetimeCol = :lifetime, $this->timeCol = :time WHERE $this->idCol = :id"1
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
"DELETE FROM $this->table WHERE $this->lifetimeCol + $this->timeCol <= ?"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
"SELECT $this->idCol, CASE WHEN $this->lifetimeCol IS NULL OR $this->lifetimeCol + $this->timeCol > ? THEN $this->dataCol ELSE NULL END FROM $this->table WHERE $this->idCol IN (?)"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
"DELETE FROM $this->table WHERE $this->lifetimeCol + $this->timeCol <= ? AND $this->idCol IN (?)"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
"SELECT 1 FROM $this->table WHERE $this->idCol = ? AND ($this->lifetimeCol IS NULL OR $this->lifetimeCol + $this->timeCol > ?)"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
"DELETE FROM $this->table WHERE $this->idCol IN (?)"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
"INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (?, ?, ?, ?)"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
"UPDATE $this->table SET $this->dataCol = ?, $this->lifetimeCol = ?, $this->timeCol = ? WHERE $this->idCol = ?"1
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
'delete key one'1
  • /src/Symfony/Component/Translation/Bridge/Phrase/Tests/PhraseProviderTest.php
'delete key two'1
  • /src/Symfony/Component/Translation/Bridge/Phrase/Tests/PhraseProviderTest.php
'Delete translations available on provider but not locally.'1
  • /src/Symfony/Component/Translation/Command/TranslationPushCommand.php
"INSERT INTO $this->table ($this->idCol, $this->tokenCol, $this->expirationCol) VALUES (:id, :token, {$this->getCurrentTimestampStatement( )} + $this->initialTtl)"1
  • /src/Symfony/Component/Lock/Store/PdoStore.php
"UPDATE $this->table SET $this->expirationCol = {$this->getCurrentTimestampStatement( )} + $ttl, $this->tokenCol = :token1 WHERE $this->idCol = :id AND ($this->tokenCol = :token2 OR $this->expirationCol <= {$this->getCurrentTimestampStatement( )})"1
  • /src/Symfony/Component/Lock/Store/PdoStore.php
"DELETE FROM $this->table WHERE $this->idCol = :id AND $this->tokenCol = :token"1
  • /src/Symfony/Component/Lock/Store/PdoStore.php
"SELECT 1 FROM $this->table WHERE $this->idCol = :id AND $this->tokenCol = :token AND $this->expirationCol > {$this->getCurrentTimestampStatement( )}"1
  • /src/Symfony/Component/Lock/Store/PdoStore.php
"INSERT INTO $this->table ($this->idCol, $this->tokenCol, $this->expirationCol) VALUES (?, ?, {$this->getCurrentTimestampStatement( )} + $this->initialTtl)"1
  • /src/Symfony/Component/Lock/Store/DoctrineDbalStore.php
"UPDATE $this->table SET $this->expirationCol = {$this->getCurrentTimestampStatement( )} + ?, $this->tokenCol = ? WHERE $this->idCol = ? AND ($this->tokenCol = ? OR $this->expirationCol <= {$this->getCurrentTimestampStatement( )})"1
  • /src/Symfony/Component/Lock/Store/DoctrineDbalStore.php
"SELECT 1 FROM $this->table WHERE $this->idCol = ? AND $this->tokenCol = ? AND $this->expirationCol > {$this->getCurrentTimestampStatement( )}"1
  • /src/Symfony/Component/Lock/Store/DoctrineDbalStore.php
'SELECT a.* FROM'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/Connection.php
'SELECT a.id FROM'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/Connection.php
'SELECT FOR UPDATE'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'SELECT m.* FROM messenger_messages m WITH (UPDLOCK, ROWLOCK) WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY available_at ASC OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY '1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'SELECT w.id AS "id", w.body AS "body", w.headers AS "headers", w.queue_name AS "queue_name", w.created_at AS "created_at", w.available_at AS "available_at", w.delivered_at AS "delivered_at" FROM messenger_messages w WHERE w.id IN (SELECT m.id FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY available_at ASC FETCH NEXT 1 ROWS ONLY) FOR UPDATE'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'SELECT w.id AS "id", w.body AS "body", w.headers AS "headers", w.queue_name AS "queue_name", w.created_at AS "created_at", w.available_at AS "available_at", w.delivered_at AS "delivered_at" FROM messenger_messages w WHERE w.id IN (SELECT a.id FROM (SELECT m.id FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY available_at ASC) a WHERE ROWNUM <= 1) FOR UPDATE'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'SELECT m.* FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY (SELECT 0) OFFSET 0 ROWS FETCH NEXT 50 ROWS ONLY'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'SELECT m.id AS "id", m.body AS "body", m.headers AS "headers", m.queue_name AS "queue_name", m.created_at AS "created_at", m.available_at AS "available_at", m.delivered_at AS "delivered_at" FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) FETCH NEXT 50 ROWS ONLY'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'SELECT a.* FROM (SELECT m.id AS "id", m.body AS "body", m.headers AS "headers", m.queue_name AS "queue_name", m.created_at AS "created_at", m.available_at AS "available_at", m.delivered_at AS "delivered_at" FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?)) a WHERE ROWNUM <= 50'1
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php
'Select receivers to consume:'1
  • /src/Symfony/Component/Messenger/Command/ConsumeMessagesCommand.php
'Select failed transport:'1
  • /src/Symfony/Component/Messenger/Command/AbstractFailedMessagesCommand.php
'Show one or more messages from the failure transport'1
  • /src/Symfony/Component/Messenger/Command/FailedMessagesShowCommand.php
'Show the message count for one or more transports'1
  • /src/Symfony/Component/Messenger/Command/StatsCommand.php
'Update JavaScript packages to their latest versions'1
  • /src/Symfony/Component/AssetMapper/Command/ImportMapUpdateCommand.php
'SELECT sess_lifetime FROM sessions'1
  • /src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php
"DELETE FROM $this->table WHERE $this->idCol = :id"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"UPDATE $this->table SET $this->lifetimeCol = :expiry, $this->timeCol = :time WHERE $this->idCol = :id"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"DELETE FROM $this->table WHERE $this->lifetimeCol < :time"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
'SELECT GET_LOCK(:key, 50)'1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
'SELECT pg_advisory_lock(:key1, :key2)'1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
'SELECT pg_advisory_unlock(:key1, :key2)'1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
'SELECT pg_advisory_unlock(:key)'1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"SELECT $this->dataCol, $this->lifetimeCol FROM $this->table WHERE $this->idCol = :id FOR UPDATE"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"SELECT $this->dataCol, $this->lifetimeCol FROM $this->table WITH (UPDLOCK, ROWLOCK) WHERE $this->idCol = :id"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"SELECT $this->dataCol, $this->lifetimeCol FROM $this->table WHERE $this->idCol = :id"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, EMPTY_BLOB(), :expiry, :time) RETURNING $this->dataCol into :data"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time)"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"UPDATE $this->table SET $this->dataCol = EMPTY_BLOB(), $this->lifetimeCol = :expiry, $this->timeCol = :time WHERE $this->idCol = :id RETURNING $this->dataCol into :data"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"UPDATE $this->table SET $this->dataCol = :data, $this->lifetimeCol = :expiry, $this->timeCol = :time WHERE $this->idCol = :id"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time) " . "ON DUPLICATE KEY UPDATE $this->dataCol = VALUES($this->dataCol), $this->lifetimeCol = VALUES($this->lifetimeCol), $this->timeCol = VALUES($this->timeCol)"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"INSERT OR REPLACE INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time)"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
"INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time) " . "ON CONFLICT ($this->idCol) DO UPDATE SET ($this->dataCol, $this->lifetimeCol, $this->timeCol) = (EXCLUDED.$this->dataCol, EXCLUDED.$this->lifetimeCol, EXCLUDED.$this->timeCol)"1
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
'select "0" choice by key'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select "0" choice by value'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select by key'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select by value'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select by key, with numeric key'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select by value, with numeric key'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select by key, with string object value'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'select by value, with string object value'1
  • /src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
'Show assigned controllers in overview'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php
'Show aliases in overview'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php
'Select one of the matching routes'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php
'Show also services that are not aliased'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/DebugAutowiringCommand.php
'Show arguments in services'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
'Show hidden (internal) services'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
'Show all services with a specific tag'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
'Select one of the following services to display its information'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
'Delete an item from a cache pool'1
  • /src/Symfony/Bundle/FrameworkBundle/Command/CachePoolDeleteCommand.php
'Select which Transition events should be dispatched for this Workflow'1
  • /src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php
'SELECT * FROM table1 WHERE field1 = ?1'2
  • /src/Symfony/Bridge/Doctrine/Tests/DataCollector/DoctrineDataCollectorTest.php (2)
'INSERT INTO products(name, price, stock) VALUES ("product2", 15.5, 12)'2
  • /src/Symfony/Bridge/Doctrine/Tests/Middleware/Debug/MiddlewareTest.php (2)
'SELECT * FROM products'2
  • /src/Symfony/Bridge/Doctrine/Tests/Middleware/Debug/MiddlewareTest.php (2)
'SELECT c FROM ' . self::ENTITY_CLASS . ' c'2
  • /src/Symfony/Bridge/Doctrine/Tests/Form/Type/EntityTypePerformanceTest.php (2)
"DELETE FROM $this->table WHERE $this->idCol LIKE '$namespace%'"2
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
'INSERT OR REPLACE' . substr($insertSql, 6)2
  • /src/Symfony/Component/Cache/Adapter/PdoAdapter.php
  • /src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php
'delete this,erroneous:key'2
  • /src/Symfony/Component/Translation/Bridge/Phrase/Tests/PhraseProviderTest.php (2)
'SELECT pg_try_advisory_lock(:key)'2
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
'SELECT pg_try_advisory_lock_shared(:key)'2
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
"SELECT count(*) FROM pg_locks WHERE locktype='advisory' AND objid=:key AND pid=pg_backend_pid()"2
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
'SELECT pg_advisory_lock_shared(:key)'2
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
"SELECT pg_advisory_unlock(objid::bigint) FROM pg_locks WHERE locktype='advisory' AND mode='ExclusiveLock' AND objid=:key AND pid=pg_backend_pid()"2
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
"SELECT pg_advisory_unlock_shared(objid::bigint) FROM pg_locks WHERE locktype='advisory' AND mode='ShareLock' AND objid=:key AND pid=pg_backend_pid()"2
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
"DELETE FROM $this->table WHERE $this->expirationCol <= {$this->getCurrentTimestampStatement( )}"2
  • /src/Symfony/Component/Lock/Store/PdoStore.php
  • /src/Symfony/Component/Lock/Store/DoctrineDbalStore.php
'SELECT m.* FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) ORDER BY available_at ASC LIMIT 1 FOR UPDATE'2
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php (2)
'SELECT m.* FROM messenger_messages m WHERE (m.queue_name = ?) AND (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) LIMIT 50'2
  • /src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/ConnectionTest.php (2)
'Select one of the matching routes:'2
  • /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/RouterDebugCommandTest.php (2)
'Select one of the following tags to display its information'2
  • /src/Symfony/Bundle/FrameworkBundle/Tests/Functional/ContainerDebugCommandTest.php
  • /src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
'SELECT * FROM table2'3
  • /src/Symfony/Bridge/Doctrine/Tests/DataCollector/DoctrineDataCollectorTest.php (3)
'SELECT pg_advisory_lock(:key)'3
  • /src/Symfony/Component/Lock/Store/DoctrineDbalPostgreSqlStore.php
  • /src/Symfony/Component/Lock/Store/PostgreSqlStore.php
  • /src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php
'Update the local vault.'3
  • /src/Symfony/Bundle/FrameworkBundle/Command/SecretsRemoveCommand.php
  • /src/Symfony/Bundle/FrameworkBundle/Command/SecretsGenerateKeysCommand.php
  • /src/Symfony/Bundle/FrameworkBundle/Command/SecretsSetCommand.php
'INSERT INTO products(name, price, stock) VALUES ("product1", 12.5, 5)'4
  • /src/Symfony/Bridge/Doctrine/Tests/Middleware/Debug/MiddlewareTest.php (4)
'Select an option'4
  • /src/Symfony/Component/Form/Tests/Extension/Core/Type/ChoiceTypeTest.php (4)
'SELECT COUNT(*) FROM sessions'4
  • /src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php (4)
'INSERT INTO'6
  • /src/Symfony/Component/Lock/Tests/Store/DoctrineDbalStoreTest.php (6)
'SELECT * FROM table1'9
  • /src/Symfony/Bridge/Doctrine/Tests/DataCollector/DoctrineDataCollectorTest.php (9)