Skip to content

Commit

Permalink
Merge pull request #99 from niden/master
Browse files Browse the repository at this point in the history
5.6.2
  • Loading branch information
niden authored Mar 14, 2024
2 parents 59be72b + 58b49ae commit 509423a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Di/AbstractInjectionAware.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
*/
namespace Phalcon\Di;

use stdClass;

/**
* This abstract class offers common access to the DI in a class
*/
abstract class AbstractInjectionAware implements \Phalcon\Di\InjectionAwareInterface
abstract class AbstractInjectionAware extends stdClass implements \Phalcon\Di\InjectionAwareInterface
{
/**
* Dependency Injector
Expand Down
3 changes: 3 additions & 0 deletions src/Support/HelperFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
* @method string decrement(string $text, string $separator = '_')
* @method string dirFromFile(string $file)
* @method string dirSeparator(string $directory)
* @method string dynamic(string $text, string $leftDelimiter = "{", string $rightDelimiter = "}", string $separator = "|")
* @method string encode($data, int $options = 0, int $depth = 512)
* @method bool endsWith(string $haystack, string $needle, bool $ignoreCase = true)
* @method mixed filter(array $collection, callable|null $method)
* @method mixed first(array $collection, callable $method = null)
* @method string firstBetween(string $text, string $start, string $end)
* @method mixed firstKey(array $collection, callable $method = null)
Expand All @@ -38,6 +40,7 @@
* @method string humanize(string $text)
* @method bool includes(string $haystack, string $needle)
* @method string increment(string $text, string $separator = '_')
* @method string interpolate(string $message, array $context = [], string $leftToken = "%", string $rightToken = "%")
* @method bool isAnagram(string $first, string $second)
* @method bool isBetween(int $value, int $start, int $end)
* @method bool isLower(string $text, string $encoding = 'UTF-8')
Expand Down

0 comments on commit 509423a

Please sign in to comment.