Skip to content

Commit

Permalink
Correct misspelled route method
Browse files Browse the repository at this point in the history
Add better typing to the templates
  • Loading branch information
nmeri17 committed May 30, 2023
1 parent db1d37c commit eba973d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions AllModules/PublishedModules.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@

use Suphle\Hydration\Container;

use Suphle\Contracts\Modules\DescriptorInterface;

class PublishedModules extends ModuleHandlerIdentifier
{
/**
* @return DescriptorInterface[]
*
* @psalm-return list{DescriptorInterface}
*/
public function getModules(): array
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ public function _prefixCurrent(): string
public function HELLO()
{

$this->_get(new Json("handleHello"));
$this->_httpGet(new Json("handleHello"));
}
}

0 comments on commit eba973d

Please sign in to comment.