Skip to content

Commit e6c4101

Browse files
committed
add missing getter for skippedCount
1 parent 3abdf1b commit e6c4101

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

src/Result.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ class Result
4848
*/
4949
protected $totalProcessedCount = 0;
5050

51+
/**
52+
* @var integer
53+
*/
54+
protected $skippedCount = 0;
55+
5156
/**
5257
* @var \SplObjectStorage
5358
*/
@@ -135,6 +140,14 @@ public function getTotalProcessedCount()
135140
return $this->totalProcessedCount;
136141
}
137142

143+
/**
144+
* @return int
145+
*/
146+
public function getSkippedCount()
147+
{
148+
return $this->skippedCount;
149+
}
150+
138151
/**
139152
* @return boolean
140153
*/

0 commit comments

Comments
 (0)