Skip to content

Commit

Permalink
Create UPGRADE-2.0.md
Browse files Browse the repository at this point in the history
  • Loading branch information
imdhemy committed Apr 8, 2024
1 parent 610f46d commit bc75ba1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions UPGRADE-2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Upgrade from 1.x to 2.0

## High impact changes

- Replace direct usage out output helpers with a call to the `$this->outoput->methodName()`.

```diff
// Instead of
- $this->info('Hello world'); // A single example, but all output helpers are affected

// Use
+ $this->output->info('Hello world');
```

## Medium impact changes

## Low impact changes

0 comments on commit bc75ba1

Please sign in to comment.