8000 Fix wrong method name · symfony/symfony@98aa48b · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 98aa48b

Browse files
committed
Fix wrong method name
1 parent 02159ae commit 98aa48b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Symfony/Component/Config/ConfigCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
8000
@@ -44,7 +44,7 @@ public function __construct($file, $debug)
4444
* Gets the cache file path.
4545
*
4646
* @return string The cache file path
47-
* @deprecated since 2.7, to be removed in 3.0. Use getFilePath() instead.
47+
* @deprecated since 2.7, to be removed in 3.0. Use getPath() instead.
4848
*/
4949
public function __toString()
5050
{

src/Symfony/Component/Config/ConfigCacheInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface ConfigCacheInterface
2121
/**
2222
* Gets the cache file path.
2323
*
24-
* @deprecated since version 2.7, to be removed in 3.0.
24+
* @deprecated since 2.7, to be removed in 3.0. Use getPath() instead.
2525
* @return string The cache file path
2626
*/
2727
public function __toString();
@@ -36,7 +36,7 @@ public function getPath();
3636
/**
3737
* Checks if the cache is still fresh.
3838
*
39-
* @return Boolean true if the cache is fresh, false otherwise
39+
* @return bool true if the cache is fresh, false otherwise
4040
*/
4141
public function isFresh();
4242

0 commit comments

Comments
 (0)
0