]> Raphaƫl G. Git Repositories - packbundle/blobdiff - Package/PathPackage.php
Version 0.5.7
[packbundle] / Package / PathPackage.php
index c202b1931790893fba4a3e6f1b3ad807237cf17f..d5b4b6f04c1b7998a43656732996e2e682eacb7a 100644 (file)
 
 namespace Rapsys\PackBundle\Package;
 
+use Rapsys\PackBundle\Context\NullContext;
+
 use Symfony\Component\Asset\Context\ContextInterface;
 use Symfony\Component\Asset\Package;
 use Symfony\Component\Asset\VersionStrategy\VersionStrategyInterface;
 
-use Rapsys\PackBundle\Context\NullContext;
-
 /**
  * {@inheritdoc}
  */
@@ -57,20 +57,20 @@ class PathPackage extends Package {
        }
 
        /**
+        * {@inheritdoc}
+        *
         * Returns an absolute or root-relative public path
         *
-        * Transform @BundleBundle to bundle and remove /Resources/public fragment from path
+        * Transform @BundleBundle to bundle and remove [/Resources|]/public fragment from path
         * This bundle name conversion and bundle prefix are the same as in asset:install command
         *
         * @link https://symfony.com/doc/current/bundles.html#overridding-the-bundle-directory-structure
         * @see vendor/symfony/framework-bundle/Command/AssetsInstallCommand.php +113
         * @see vendor/symfony/framework-bundle/Command/AssetsInstallCommand.php +141
-        *
-        * {@inheritdoc}
         */
        public function getUrl(string $path): string {
                //Match url starting with a bundle name
-               if (preg_match('%^@([A-Z][a-zA-Z]*?)(?:Bundle/Resources/public)?/(.*)$%', $path, $matches)) {
+               if (preg_match('%^@([A-Z][a-zA-Z]*?)(?:Bundle/(?:Resources/)?public)?/(.*)$%', $path, $matches)) {
                        //Handle empty or without replacement pattern basePath
                        if (empty($this->basePath) || strpos($this->basePath, '%s') === false) {
                                //Set path from hardcoded format