Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tenmajkl committed Oct 6, 2022
1 parent daf8d59 commit c85e27b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/Lemon/Http/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function data(): array
/**
* Returns request body value for given key.
*/
public function get(string $key): ?string
public function get(string $key): mixed
{
return $this->data()[$key] ?? null;
}
Expand Down
34 changes: 17 additions & 17 deletions src/Lemon/Kernel/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,29 @@
/**
* The Lemon Application.
*
* @property Lemon\Routing\Router $routing
* @property Lemon\Config\Config $config
* @property Lemon\Cache\Cache $cache
* @property Lemon\Templating\Juice\Compiler $juice
* @property Lemon\Templating\Factory $templating
* @property Lemon\Support\Env $env
* @property Lemon\Http\ResponseFactory $response
* @property Lemon\Http\Session $session
* @property Lemon\Protection\Csrf $csrf
* @property Lemon\Debug\Handling\Handler $handler
* @property Lemon\Terminal\Terminal $terminal
* @property Lemon\Debug\Dumper $dumper
* @property Lemon\Events\Dispatcher $events
* @property Lemon\Logging\Logger $log
* @property Lemon\Database\Database $database
* @property Lemon\Validation\Validator $validation
* @property \Lemon\Routing\Router $routing
* @property \Lemon\Config\Config $config
* @property \Lemon\Cache\Cache $cache
* @property \Lemon\Templating\Juice\Compiler $juice
* @property \Lemon\Templating\Factory $templating
* @property \Lemon\Support\Env $env
* @property \Lemon\Http\ResponseFactory $response
* @property \Lemon\Http\Session $session
* @property \Lemon\Protection\Csrf $csrf
* @property \Lemon\Debug\Handling\Handler $handler
* @property \Lemon\Terminal\Terminal $terminal
* @property \Lemon\Debug\Dumper $dumper
* @property \Lemon\Events\Dispatcher $events
* @property \Lemon\Logging\Logger $log
* @property \Lemon\Database\Database $database
* @property \Lemon\Validation\Validator $validation
*/
final class Application extends Container
{
/**
* Current Lemon version.
*/
public const VERSION = '3.6.5';
public const VERSION = '3.6.6';

/**
* Default units with aliases.
Expand Down

0 comments on commit c85e27b

Please sign in to comment.