File tree 6 files changed +11
-19
lines changed
6 files changed +11
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
- 5.5
11
11
- 5.6
12
12
- hhvm
13
+ - 7
13
14
14
15
matrix :
15
16
fast_finish : true
16
17
allow_failures :
17
18
- php : hhvm
19
+ - php : 7
18
20
19
21
before_script :
20
22
- composer self-update
@@ -24,12 +26,9 @@ script:
24
26
- mkdir -p build/logs
25
27
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
26
28
27
- after_script :
28
- - vendor/bin/coveralls -v
29
+ after_success :
29
30
- wget https://scrutinizer-ci.com/ocular.phar
30
31
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
31
32
32
33
notifications :
33
34
email : false
34
- hipchat :
35
- - secure : " er7thyIWhqVBJjCH4A/giLAf9EGoVJKgsFs+LAxqBK2wlxQmynnum/5mJhCU\n /jBNPqtgIyKjshAUBPsKThKGt/Q1GnGa1Db5gmqLmZb+tBEUcvRH4aQ9M3dX\n xJt9xslRBXiJ2By4ZnxHq5V7VLb5FNm3SeZfHQ2e3hopq6UqiLw="
Original file line number Diff line number Diff line change 1
- Vatsimphp [ ![ Latest Stable Version] ( https://poser.pugx.org/skymeyer/vatsimphp/v/stable.png )] ( https://packagist.org/packages/skymeyer/vatsimphp ) [ ![ Build Status] ( https://travis-ci.org/skymeyer/Vatsimphp.png )] ( https://travis-ci.org/skymeyer/Vatsimphp ) [ ![ Coverage Status] ( https://coveralls.io/repos /skymeyer/Vatsimphp /badge.png?branch =master )] ( https://coveralls.io/r /skymeyer/Vatsimphp?branch=master ) [ ![ Dependency Status ] ( https://www.versioneye. com/user/projects/51adb7faaffe34000200d0cd/badge .png )] ( https://www.versioneye. com/user/projects/51adb7faaffe34000200d0cd )
1
+ Vatsimphp [ ![ Latest Stable Version] ( https://poser.pugx.org/skymeyer/vatsimphp/v/stable.png )] ( https://packagist.org/packages/skymeyer/vatsimphp ) [ ![ Build Status] ( https://travis-ci.org/skymeyer/Vatsimphp.png )] ( https://travis-ci.org/skymeyer/Vatsimphp ) [ ![ Dependency Status] ( https://www.versioneye.com/php /skymeyer:vatsimphp/dev-master /badge.svg )] ( https://www.versioneye.com/php/skymeyer:vatsimphp/dev-master ) [ ![ Code Coverage ] ( https://scrutinizer-ci.com/g/skymeyer/Vatsimphp/badges/coverage. png?b =master)] ( https://scrutinizer-ci.com/g /skymeyer/Vatsimphp/ ?branch=master ) [ ![ Code Quality ] ( https://scrutinizer-ci. com/g/skymeyer/Vatsimphp/badges/quality-score .png?b=master )] ( https://scrutinizer-ci. com/g/skymeyer/Vatsimphp/?branch=master ) [ ![ Join the chat at https://gitter.im/skymeyer/Vatsimphp ] ( https://badges.gitter.im/Join%20Chat.svg )] ( https://gitter.im/skymeyer/Vatsimphp )
2
2
=================
3
3
4
4
Vatsimphp collects and parses the publically available statistics
Original file line number Diff line number Diff line change 17
17
"monolog/monolog" : " ~1.11"
18
18
},
19
19
"require-dev" : {
20
- "phpunit/phpunit" : " ~4.5" ,
21
- "satooshi/php-coveralls" : " dev-master"
20
+ "phpunit/phpunit" : " ~4.5"
22
21
},
23
22
"autoload" : {
24
23
"psr-4" : {
Original file line number Diff line number Diff line change @@ -141,7 +141,6 @@ public function __construct()
141
141
*
142
142
* Set parser
143
143
* @param string $parserName
144
- * @param array $params
145
144
*/
146
145
public function setParser ($ parserName )
147
146
{
@@ -184,7 +183,7 @@ public function getUrls()
184
183
*
185
184
* Return parsed data
186
185
* @throws SyncException
187
- * @return \Iterator
186
+ * @return \Vatsimphp\Result\ResultContainer
188
187
*/
189
188
public function loadData ()
190
189
{
@@ -450,7 +449,6 @@ protected function getDataFromCurl()
450
449
*
451
450
* Load data from file and pass it to the parser
452
451
* Fails if content is expired
453
- * @param string $file
454
452
* @return boolean
455
453
*/
456
454
protected function loadFromCache ()
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ public function searchCallsign($callsign)
202
202
/**
203
203
*
204
204
* Search for given vatsim ID
205
- * @param string $id
205
+ * @param string $cid
206
206
* @return \Vatsimphp\Filter\Iterator
207
207
*/
208
208
public function searchVatsimId ($ cid )
@@ -378,7 +378,7 @@ public function getConfig($key = null)
378
378
/**
379
379
*
380
380
* Prepare StatusSync object for reusage
381
- * @return Vatsimphp\Sync\ StatusSync
381
+ * @return StatusSync
382
382
*/
383
383
protected function prepareSync ()
384
384
{
@@ -400,7 +400,7 @@ protected function prepareSync()
400
400
/**
401
401
*
402
402
* Prepare MetarSync object for reusage
403
- * @return Vatsimphp\Sync\ MetarSync
403
+ * @return MetarSync
404
404
*/
405
405
protected function prepareMetarSync ()
406
406
{
@@ -428,15 +428,15 @@ protected function getStatusSync()
428
428
}
429
429
430
430
/**
431
- * @return Vatsimphp\Sync\ DataSync
431
+ * @return DataSync
432
432
*/
433
433
protected function getDataSync ()
434
434
{
435
435
return new DataSync ();
436
436
}
437
437
438
438
/**
439
- * @return Vatsimphp\Sync\ MetarSync
439
+ * @return MetarSync
440
440
*/
441
441
protected function getMetarSync ()
442
442
{
You can’t perform that action at this time.
0 commit comments