Skip to content

Commit 45fde39

Browse files
committed
adding mongo code base to phpunit ignore list
1 parent 55ec9d8 commit 45fde39

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

src/Flow/Mongo/MongoConfig.php

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
use Flow\Config;
66

7+
/**
8+
* @codeCoverageIgnore
9+
*/
710
class MongoConfig extends Config implements MongoConfigInterface
811
{
912
private $gridFs;

src/Flow/Mongo/MongoConfigInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Flow\ConfigInterface;
66

77
/**
8-
* @package Flow
8+
* @codeCoverageIgnore
99
*/
1010
interface MongoConfigInterface extends ConfigInterface
1111
{

src/Flow/Mongo/MongoFile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* - Chunk preprocessor not supported (must not modify chunks size)!
1515
* - Must use 'forceChunkSize=true' on client side.
1616
*
17-
* @package Flow
17+
* @codeCoverageIgnore
1818
*/
1919
class MongoFile extends File
2020
{

src/Flow/Mongo/MongoUploader.php

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
use Flow\FileOpenException;
66

7+
/**
8+
* @codeCoverageIgnore
9+
*/
710
class MongoUploader
811
{
912
/**

0 commit comments

Comments
 (0)