-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from event-engine/feature/add-missing-types
Add missing types
- Loading branch information
Showing
32 changed files
with
5,015 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
$config = new Prooph\CS\Config\Prooph(); | ||
$finder = $config->getFinder(); | ||
|
||
$finder->exclude('vendor'); | ||
$finder->in(__DIR__); | ||
$finder->append(['.php_cs']); | ||
|
||
$cacheDir = \getenv('TRAVIS') ? \getenv('HOME') . '/.php-cs-fixer' : __DIR__; | ||
|
||
$config->setCacheFile($cacheDir . '/.php_cs.cache'); | ||
|
||
return $config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ parameters: | |
level: 5 | ||
paths: | ||
- src/ | ||
ignoreErrors: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
/** | ||
* @see https://github.com/event-engine/php-inspectio-graph-cody for the canonical source repository | ||
* @copyright https://github.com/event-engine/php-inspectio-graph-cody/blob/master/COPYRIGHT.md | ||
* @license https://github.com/event-engine/php-inspectio-graph-cody/blob/master/LICENSE.md MIT License | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace EventEngine\InspectioGraphCody; | ||
|
||
use EventEngine\InspectioGraph\BoundedContextType; | ||
use EventEngine\InspectioGraph\Metadata; | ||
|
||
final class BoundedContext extends Vertex implements BoundedContextType | ||
{ | ||
protected const TYPE = self::TYPE_BOUNDED_CONTEXT; | ||
|
||
/** | ||
* @var Metadata\Metadata|null | ||
*/ | ||
protected $metadataInstance; | ||
|
||
public function metadataInstance(): ?Metadata\Metadata | ||
{ | ||
return $this->metadataInstance; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.