Skip to content

Commit 509423a

Browse files
authored
Merge pull request #99 from niden/master
5.6.2
2 parents 59be72b + 58b49ae commit 509423a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/Di/AbstractInjectionAware.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
*/
1010
namespace Phalcon\Di;
1111

12+
use stdClass;
13+
1214
/**
1315
* This abstract class offers common access to the DI in a class
1416
*/
15-
abstract class AbstractInjectionAware implements \Phalcon\Di\InjectionAwareInterface
17+
abstract class AbstractInjectionAware extends stdClass implements \Phalcon\Di\InjectionAwareInterface
1618
{
1719
/**
1820
* Dependency Injector

src/Support/HelperFactory.php

+3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@
2525
* @method string decrement(string $text, string $separator = '_')
2626
* @method string dirFromFile(string $file)
2727
* @method string dirSeparator(string $directory)
28+
* @method string dynamic(string $text, string $leftDelimiter = "{", string $rightDelimiter = "}", string $separator = "|")
2829
* @method string encode($data, int $options = 0, int $depth = 512)
2930
* @method bool endsWith(string $haystack, string $needle, bool $ignoreCase = true)
31+
* @method mixed filter(array $collection, callable|null $method)
3032
* @method mixed first(array $collection, callable $method = null)
3133
* @method string firstBetween(string $text, string $start, string $end)
3234
* @method mixed firstKey(array $collection, callable $method = null)
@@ -38,6 +40,7 @@
3840
* @method string humanize(string $text)
3941
* @method bool includes(string $haystack, string $needle)
4042
* @method string increment(string $text, string $separator = '_')
43+
* @method string interpolate(string $message, array $context = [], string $leftToken = "%", string $rightToken = "%")
4144
* @method bool isAnagram(string $first, string $second)
4245
* @method bool isBetween(int $value, int $start, int $end)
4346
* @method bool isLower(string $text, string $encoding = 'UTF-8')

0 commit comments

Comments
 (0)