Skip to content

Commit

Permalink
Merge pull request #3 from bresam/develop
Browse files Browse the repository at this point in the history
Colon Syntax fix
  • Loading branch information
bresam authored Mar 4, 2021
2 parents 5bcbec0 + 697f147 commit c3e9e03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DependencyInjection/Compiler/RegisterFormResourcePass.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function process(ContainerBuilder $container)
$container->setParameter(
$parameter,
array_merge(
['IvoryGoogleMapBundle:Form'],
['@IvoryGoogleMapBundle/Form'],
$container->getParameter($parameter)
)
);
Expand All @@ -38,7 +38,7 @@ public function process(ContainerBuilder $container)
$container->setParameter(
$parameter,
array_merge(
['IvoryGoogleMapBundle:Form:place_autocomplete_widget.html.twig'],
['@IvoryGoogleMap/Form/place_autocomplete_widget.html.twig'],
$container->getParameter($parameter)
)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public function testTemplatingFormResources()
$this->container->compile();

$this->assertSame(
array_merge(['IvoryGoogleMapBundle:Form'], $resources),
array_merge(['@IvoryGoogleMapBundle/Form'], $resources),
$this->container->getParameter($parameter)
);
}
Expand All @@ -176,7 +176,7 @@ public function testTwigFormResources()
$this->container->compile();

$this->assertSame(
array_merge(['IvoryGoogleMapBundle:Form:place_autocomplete_widget.html.twig'], $resources),
array_merge(['@IvoryGoogleMap/Form/place_autocomplete_widget.html.twig'], $resources),
$this->container->getParameter($parameter)
);
}
Expand Down

0 comments on commit c3e9e03

Please sign in to comment.