| 1 | <?php |
||
| 12 | class Docker |
||
| 13 | { |
||
| 14 | |||
| 15 | protected $local = false; |
||
| 16 | |||
| 17 | public function __construct($bash = false) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * # This script is meant for quick & easy install via: |
||
| 27 | * # $ curl -fsSL https://get.docker.com -o get-docker.sh |
||
| 28 | * # $ sh get-docker.sh |
||
| 29 | * # |
||
| 30 | * # For test builds (ie. release candidates): |
||
| 31 | * # $ curl -fsSL https://test.docker.com -o test-docker.sh |
||
| 32 | * # $ sh test-docker.sh |
||
| 33 | * # |
||
| 34 | * # NOTE: Make sure to verify the contents of the script |
||
| 35 | * # you downloaded matches the contents of install.sh |
||
| 36 | * # located at https://github.com/docker/docker-install |
||
| 37 | * # before executing. |
||
| 38 | * # |
||
| 39 | * # Git commit from https://github.com/docker/docker-install when |
||
| 40 | * # the script was uploaded (Should only be modified by upload job): |
||
| 41 | * SCRIPT_COMMIT_SHA=2f4ae48 |
||
| 42 | */ |
||
| 43 | public function install() |
||
| 50 | |||
| 51 | public function installNow($bash = false) |
||
| 55 | } |
||
| 56 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..