Adds a reason why the migration passed or failed the audit.
string|object $reason: The reason to add. Can be a string or a string-castable object.
$this
public function addReason($reason) { array_push($this->reasons, (string) $reason); return $this; }