1 | <?php |
||
12 | class Prepare extends Command |
||
13 | { |
||
14 | protected $signature = 'translation_sheet:prepare'; |
||
15 | |||
16 | protected $description = 'Rewrite locales languages files by removing comments and sorting keys. This most likely reduce and simplify conflicts when pulling translations from spreadsheet.'; |
||
17 | 1 | ||
18 | public function handle(SheetPusher $pusher, Spreadsheet $spreadsheet, Writer $writer) |
||
43 | } |
||
44 |
It seems like you are assigning to a variable which was imported through a
use
statement which was not imported by reference.For clarity, we suggest to use a different name or import by reference depending on whether you would like to have the change visibile in outer-scope.
Change not visible in outer-scope
Change visible in outer-scope