function ConnectionTest::providerFilterComments

Data provider for testFilterComments().

Return value

array Array of arrays with the following elements:

  • Expected filtered comment.
  • Comment to filter.

File

core/tests/Drupal/Tests/Core/Database/ConnectionTest.php, line 426

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public static function providerFilterComments() {
  return [
    [
      '',
      '',
    ],
    [
      'Exploit  *  / DROP TABLE node. --',
      'Exploit * / DROP TABLE node; --',
    ],
    [
      'Exploit  * / DROP TABLE node. --',
      'Exploit */ DROP TABLE node; --',
    ],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.