summaryrefslogtreecommitdiff
path: root/tests/Unit/Routing
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2018-08-06 12:57:48 +0200
committermsquare <msquare@notrademark.de>2018-08-06 12:57:48 +0200
commit9496e3571168feff780f6efb17ddc00c670e2dee (patch)
tree7313a4fecc2da111a199e727b12e88346d5db230 /tests/Unit/Routing
parent86b29370786de35cc40e3424e09c3cf48551ee28 (diff)
added comments and renamed short method to url generators
Diffstat (limited to 'tests/Unit/Routing')
-rw-r--r--tests/Unit/Routing/LegacyUrlGeneratorTest.php2
-rw-r--r--tests/Unit/Routing/UrlGeneratorTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Routing/LegacyUrlGeneratorTest.php b/tests/Unit/Routing/LegacyUrlGeneratorTest.php
index 7c28eaed..9576a260 100644
--- a/tests/Unit/Routing/LegacyUrlGeneratorTest.php
+++ b/tests/Unit/Routing/LegacyUrlGeneratorTest.php
@@ -48,7 +48,7 @@ class LegacyUrlGeneratorTest extends TestCase
$urlGenerator = new LegacyUrlGenerator();
$this->assertInstanceOf(UrlGeneratorInterface::class, $urlGenerator);
- $url = $urlGenerator->link_to($urlToPath, $arguments);
+ $url = $urlGenerator->linkTo($urlToPath, $arguments);
$this->assertEquals($expectedUrl, $url);
}
}
diff --git a/tests/Unit/Routing/UrlGeneratorTest.php b/tests/Unit/Routing/UrlGeneratorTest.php
index 34c2f610..ddb6c975 100644
--- a/tests/Unit/Routing/UrlGeneratorTest.php
+++ b/tests/Unit/Routing/UrlGeneratorTest.php
@@ -48,7 +48,7 @@ class UrlGeneratorTest extends TestCase
$urlGenerator = new UrlGenerator();
$this->assertInstanceOf(UrlGeneratorInterface::class, $urlGenerator);
- $url = $urlGenerator->link_to($urlToPath, $arguments);
+ $url = $urlGenerator->linkTo($urlToPath, $arguments);
$this->assertEquals($expectedUrl, $url);
}
}