heymoon-cc/php-vector-tile-data-provider

View on GitHub
src/Entity/ProxySource.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HeyMoon\VectorTileDataProvider\Entity;

class ProxySource extends AbstractSource
{
    protected function createLayer(string $name): AbstractLayer
    {
        return new ProxyLayer($name, $this, $this->geometryCollectionFactory);
    }
}