├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── basic ├── 1.php └── README.md ├── beginner ├── 1.php ├── 2.php ├── 3.php ├── 4.php └── README.md ├── composer.json ├── composer.lock ├── phpstan.dist.neon └── pictures ├── highlighting-comments.png └── splited-screen.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /basic/1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/basic/1.php -------------------------------------------------------------------------------- /basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/basic/README.md -------------------------------------------------------------------------------- /beginner/1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/beginner/1.php -------------------------------------------------------------------------------- /beginner/2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/beginner/2.php -------------------------------------------------------------------------------- /beginner/3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/beginner/3.php -------------------------------------------------------------------------------- /beginner/4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/beginner/4.php -------------------------------------------------------------------------------- /beginner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/beginner/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/composer.lock -------------------------------------------------------------------------------- /phpstan.dist.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/phpstan.dist.neon -------------------------------------------------------------------------------- /pictures/highlighting-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/pictures/highlighting-comments.png -------------------------------------------------------------------------------- /pictures/splited-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonuexe/phpstan-typing-tutorial/HEAD/pictures/splited-screen.png --------------------------------------------------------------------------------