Skip to content

Commit

Permalink
[Projection] Removed forced return type
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsimonbennett committed Jul 17, 2018
1 parent 77a8552 commit 7f1c1d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Contracts/Projections/ProjectionServiceProvider.php
Expand Up @@ -11,12 +11,12 @@ interface ProjectionServiceProvider
/**
* @return string|null
*/
public function up() : ?string;
public function up();

/**
* @return string|null
*/
public function down() : ?string;
public function down();

/**
* @return string[]
Expand Down

0 comments on commit 7f1c1d7

Please sign in to comment.