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

Commit 50fe450

Browse files
committed
Remove version eye
* Service is buggy
1 parent 8d7bfb6 commit 50fe450

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Ankur
3+
Copyright (c) 2017 Ankur
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
[![Build Status](https://travis-ci.org/ankurk91/phpunit-travis-ci-coveralls-example.svg?branch=master)](https://travis-ci.org/ankurk91/phpunit-travis-ci-coveralls-example)
55
[![Coverage Status](https://coveralls.io/repos/github/ankurk91/phpunit-travis-ci-coveralls-example/badge.svg?branch=master)](https://coveralls.io/github/ankurk91/phpunit-travis-ci-coveralls-example?branch=master)
6-
[![Dependency Status](https://www.versioneye.com/user/projects/57ad5bab89a9740034ca1916/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/57ad5bab89a9740034ca1916)
6+
77

88
### Prerequisites
9-
* php v5.6.26+
9+
* php v5.6.26+ || v7.0+
1010
* [phpunit](https://github.com/sebastianbergmann/phpunit/) v5.4.6
1111
* [php-coveralls](https://github.com/satooshi/php-coveralls) v1.0.1
12-
* php Xdebug extension
12+
* php [Xdebug](https://xdebug.org/) extension
1313

1414
### Test on localhost
1515
```
@@ -32,7 +32,7 @@ phpunit
3232
* [https://phpunit.de/](https://phpunit.de/)
3333
* [https://travis-ci.org/](https://travis-ci.org/)
3434
* [https://coveralls.io/](https://coveralls.io/)
35-
* [https://www.versioneye.com](https://www.versioneye.com)
35+
3636

3737
#### License
3838
[MIT](LICENSE.txt) License

app/Classes/Calculator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public function __construct()
1717

1818
/**
1919
* Add two numbers
20+
*
2021
* @param $x
2122
* @param $y
2223
* @return mixed
@@ -28,6 +29,7 @@ public function addTwo($x, $y)
2829

2930
/**
3031
* Multiply two numbers
32+
*
3133
* @param $x
3234
* @param $y
3335
* @return mixed
@@ -40,6 +42,7 @@ public function multiplyTwo($x, $y)
4042

4143
/**
4244
* Subtract two numbers
45+
*
4346
* @param $x
4447
* @param $y
4548
* @return mixed
@@ -53,6 +56,7 @@ public function subtractTwo($x, $y)
5356
/**
5457
* Divide two numbers
5558
* //TODO Handle divide by zero
59+
*
5660
* @param $x
5761
* @param $y
5862
* @return float

public/index.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Sample page</title>
5+
<meta charset="utf-8">
6+
</head>
7+
<body>
18
<?php
29

310
require('../vendor/autoload.php');
@@ -12,4 +19,5 @@
1219

1320
?>
1421
This is just a sample page.
15-
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)