Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
use Rector\Config\RectorConfig; | |
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector; | |
use Rector\Php71\Rector\FuncCall\CountOnNullRector; | |
use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector; | |
use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector; | |
use Rector\Php80\Rector\Class_\StringableForToStringRector; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lshw -short -C memory |
Make sure to export/import your settings through File -> Manage IDE settings
before/after
- Close PHPStorm
- Run these in PowerShell to remove PhpStorm configuration:
Remove-Item '.\AppData\Local\Jetbrains\PhpStorm*'
Remove-Item '.\AppData\Roaming\Jetbrains\PhpStorm*'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// https://www.jetbrains.com/help/inspectopedia/PHP.html | |
/** @noinspection ? */ | |
// PhpObjectFieldsAreOnlyWrittenInspection Local object is used only for writing properties | |
// PhpUndefinedGotoLabelInspection Undefined goto label | |
// PhpUndefinedVariableInspection Undefined variable | |
// PhpUndefinedMethodInspection Undefined method |
OlderNewer