Skip to content

Commit 701e2fe

Browse files
committed
redbox-scan-32 Fix grammer errors
1 parent 7f1c26c commit 701e2fe

5 files changed

+15
-3
lines changed

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
## 1.1
22

33
- Removed README.md
4-
- Updated LiCENSE.md and added my Email address
4+
- Updated LICENSE.md and added my Email address
55
- Removed SUMMARY.md
6-
- Updtated composer.json to use phpunit 4.8
6+
- Updated composer.json to use phpunit 4.8
77
- Downgraded dependency to 5.3
8-
- Added support for active / pasive connections in the FTP Adapter.
8+
- Added support for active / passive connections in the FTP Adapter.
99
- Added support for FTP_MODE_BINARY or FTP_MODE_ASCII in the FTP Adapter (See examples/ftp.php) for details.
1010
- Fixed wrong test filename: ScanServiceTests.php now renamed to ScanServiceTest.php,
1111
- Added a section to README.md on how to install the package from downloads.
12+
- Fixed a lot of grammar issues.
13+
- Added a whole new world of FTP Coverage.
14+
- Updated for performance on Redbox\Scan\ScanService::index() and Redbox\Scan\ScanService::scan().
15+
- Updated general test coverage of the codebase.
16+
- Added loads new tests.
1217

1318

1419
## 1.0 2015-12-27

tests/AbstractReportTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212
class AbstractReportTest extends \PHPUnit_Framework_TestCase
1313
{
14+
1415
/**
1516
* Tests that set and get Items files return the same.
1617
*/

tests/ReportTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
*/
1313
class ReportTest extends \PHPUnit_Framework_TestCase
1414
{
15+
1516
/**
1617
* We need to validate that a RuntimeException if the input array for method
1718
* Report::fromArray() does not contain the required keys.

tests/ScanServiceTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
/**
77
* This class will run tests against the ScanService class.
8+
*
9+
* @coversDefaultClass \Redbox\Scan\ScanService
10+
* @package Redbox\Scan\Tests
811
*/
912
class ScanServiceTest extends \PHPUnit_Framework_TestCase
1013
{

tests/bootstrap.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
<?php
2+
3+
date_default_timezone_set('EUROPE/AMSTERDAM');
24
require dirname(__FILE__).'/../vendor/autoload.php';

0 commit comments

Comments
 (0)