Moved to https://localheinz.com/blog/2017/10/27/essential-phpstorm-plugins/
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); | |
final class Dominoes | |
{ | |
public function maxLength(string $string): int | |
{ | |
/** @var Tile[] $tiles */ | |
$tiles = \array_map(function ($tile) { |
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
on: | |
push: | |
branch: master | |
name: Docker | |
jobs: | |
docker: |
-
Application\Started
(inCommand::main()
) -
Application\Configured
(inCommand::handleArguments()
) -
Bootstrap\Finished
(inCommand::handleBootstrap()
) -
TestSuite\Loaded
(inBaseTestRunner::getTest()
) -
TestSuite\Configured
(inTestRunner::doRun()
, afterhandleConfiguration()
) -
TestSuite\Sorted
(inTestRunner::doRun()
) -
Extension\Loaded
(inTestRunner::doRun()
)
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
name: Regenerate documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
setup: | |
name: Regenerate documentation |
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 | |
interface Sleeper | |
{ | |
public function sleep(int $seconds): void; | |
} | |
final class SystemSleeper implements Sleeper | |
{ | |
public function sleep(int $seconds): void |
OlderNewer