Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 7ae2948

Browse files
committed
tweaked previous merge
1 parent f45c155 commit 7ae2948

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Execute the `check.php` script from the command line:
5252

5353
php app/check.php
5454

55-
`app/check.php` returns status code (`0` if all mandatory requirements were
56-
met, `1` otherwise) and thus can be added to build script.
55+
The script returns a status code of `0` if all mandatory requirements are met,
56+
`1` otherwise.
5757

5858
Access the `config.php` script from a browser:
5959

app/check.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
foreach ($symfonyRequirements->getRequirements() as $req) {
3030
/** @var $req Requirement */
3131
echo_requirement($req);
32-
if (! $req->isFulfilled()) {
32+
if (!$req->isFulfilled()) {
3333
$checkPassed = false;
3434
}
3535
}

0 commit comments

Comments
 (0)