You are here

public function UrlValidatorTest::getValidCustomUrls in Plug 7

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php, line 171

Class

UrlValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getValidCustomUrls() {
  return array(
    array(
      'ftp://google.com',
    ),
    array(
      'file://127.0.0.1',
    ),
    array(
      'git://[::1]/',
    ),
  );
}