Skip to content

Commit

Permalink
strip void return type in stub file
Browse files Browse the repository at this point in the history
  • Loading branch information
weirdan committed Nov 9, 2018
1 parent 387f729 commit 903f5a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/stubs/extending_plugin_entrypoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

class ExtendingPluginRegistration implements PluginEntryPointInterface
{
public function __invoke(RegistrationInterface $r, SimpleXMLElement $config = null): void
/** @return void */
public function __invoke(RegistrationInterface $r, SimpleXMLElement $config = null)
{
$r->registerHooksFromClass(ExtendingPlugin::class);
}
Expand Down

0 comments on commit 903f5a4

Please sign in to comment.