Skip to content

Commit

Permalink
adapt tests as order from unfolded ast is deterministic now
Browse files Browse the repository at this point in the history
  • Loading branch information
marcioAlmada committed Feb 27, 2017
1 parent fda1ac3 commit 1f4d4ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/phpt/property_accessors.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ namespace App;
class Sprocket
{
private $type {
get :string {
return $this->type;
}

set(string $value) {
$this->type = $value;
}

get :string {
return $this->type;
}

unset {
$this->type = '';
}
Expand Down

0 comments on commit 1f4d4ee

Please sign in to comment.