eZ\Publish\Core\IO\Tests\UrlDecorator\AbsolutePrefixTest::provideData PHP Method

provideData() public method

public provideData ( )
    public function provideData()
    {
        return array(array('images/file.png', 'var/storage', '/var/storage/images/file.png'), array('images/file.png', 'var/storage/', '/var/storage/images/file.png'), array('images/file.png', 'http://static.example.com', 'http://static.example.com/images/file.png'), array('images/file.png', 'http://static.example.com/', 'http://static.example.com/images/file.png'), array('images/file.png', '//static.example.com', '//static.example.com/images/file.png'), array('images/file.png', '//static.example.com/', '//static.example.com/images/file.png'));
    }