Skip to content

Instantly share code, notes, and snippets.

@maks-rafalko
Created February 28, 2018 19:50
Show Gist options
  • Save maks-rafalko/ce4091ad7fcc27faf65e98a6c1b9bb9b to your computer and use it in GitHub Desktop.
Save maks-rafalko/ce4091ad7fcc27faf65e98a6c1b9bb9b to your computer and use it in GitHub Desktop.
// Throw_ Mutator
- throw new FileNotFoundException('...');
+ new FileNotFoundException('...');
// DecrementInteger Mutator
- new Assert\Length(['min' => 10]);
+ new Assert\Length(['min' => 9]);
// IncrementInteger Mutator
- new Assert\Length(['min' => 10]);
+ new Assert\Length(['min' => 11]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment