Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
donatj committed Apr 25, 2017
1 parent 2fac57e commit 9a8a2e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ echo file_get_contents($url);
Outputs:

```
Requesting: http://127.0.0.1:8123/endpoint?get=foobar
{
Expand Down Expand Up @@ -105,7 +104,6 @@ echo $content . "\n";
Outputs:

```
Requesting: http://127.0.0.1:8123/definedPath
HTTP/1.0 200 OK
Expand Down
11 changes: 4 additions & 7 deletions mddoc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
<docpage target="README.md" autoloader="psr4" autoloader-root="src"
autoloader-root-namespace="donatj\MockWebServer">
<section title="Mock Web Server">
<text><![CDATA[
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/donatj/mock-webserver/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/donatj/mock-webserver/?branch=master)
<text><![CDATA[[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/donatj/mock-webserver/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/donatj/mock-webserver/?branch=master)
[![License](https://poser.pugx.org/donatj/mock-webserver/license)](https://packagist.org/packages/donatj/mock-webserver)
Simple, easy to use Mock Web Server for PHP unit testing. Gets along simply with PHPUnit and other unit testing frameworks.
Expand All @@ -27,11 +26,10 @@ Mock Web Server creates a local Web Server you can make predefined requests agai
</section>
<section title="Examples">
<section title="Basic Usage">
<text>The following example shows the most basic usage. If you do not define a path, the server will simply bounce a JSON body describing the request back to you.</text>
<text><![CDATA[The following example shows the most basic usage. If you do not define a path, the server will simply bounce a JSON body describing the request back to you.]]></text>
<source name="example/basic.php" lang="php"/>
<text>Outputs:</text>
<source><![CDATA[
Requesting: http://127.0.0.1:8123/endpoint?get=foobar
<source><![CDATA[Requesting: http://127.0.0.1:8123/endpoint?get=foobar
{
"_GET": {
Expand All @@ -57,8 +55,7 @@ Requesting: http://127.0.0.1:8123/endpoint?get=foobar
<section title="Simple">
<source name="example/simple.php" lang="php"/>
<text>Outputs:</text>
<source><![CDATA[
Requesting: http://127.0.0.1:8123/definedPath
<source><![CDATA[Requesting: http://127.0.0.1:8123/definedPath
HTTP/1.0 200 OK
Host: 127.0.0.1:8123
Expand Down

0 comments on commit 9a8a2e3

Please sign in to comment.