Skip to content

Commit

Permalink
Fix: Run 'make coding-standards'
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed May 8, 2020
1 parent 203366a commit aa3eb4f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
15 changes: 14 additions & 1 deletion stubs/ObjectProphecy.phpstub
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
<?php

declare(strict_types=1);

/**
* Copyright (c) 2018 Jan Gregor Emge-Triebel
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* @see https://github.com/Jan0707/phpstan-prophecy
*/

namespace Prophecy\Prophecy;

/**
Expand All @@ -8,7 +19,9 @@ namespace Prophecy\Prophecy;
*/
class ObjectProphecy implements ProphecyInterface
{
/** @return T */
/**
* @return T
*/
public function reveal()
{
}
Expand Down
15 changes: 14 additions & 1 deletion stubs/ProphecyInterface.phpstub
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
<?php

declare(strict_types=1);

/**
* Copyright (c) 2018 Jan Gregor Emge-Triebel
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* @see https://github.com/Jan0707/phpstan-prophecy
*/

namespace Prophecy\Prophecy;

/**
* @template T of object
*/
interface ProphecyInterface
{
/** @return T */
/**
* @return T
*/
public function reveal();
}

0 comments on commit aa3eb4f

Please sign in to comment.