X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/57148c75381fac1f83a4afe886471c6aaa1cc2ea..59ae967e218457b2ab3d77cb621c0640345f5e9b:/Context/NullContext.php diff --git a/Context/NullContext.php b/Context/NullContext.php new file mode 100644 index 0000000..9f728cb --- /dev/null +++ b/Context/NullContext.php @@ -0,0 +1,28 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Rapsys\PackBundle\Context; + +use Symfony\Component\Asset\Context\NullContext as BaseNullContext; + +/** + * {@inheritdoc} + */ +class NullContext extends BaseNullContext { + /** + * Returns the base url + * + * @return string The base url + */ + public function getBaseUrl(): string { + return ''; + } +}