Skip to content

Commit 0b777a8

Browse files
committed
solve issue #31
1 parent b29dba4 commit 0b777a8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/JsonQueriable.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,18 @@ protected function prepare()
135135
return $this;
136136
}
137137

138+
/**
139+
* Our system will cache processed data and prevend multiple time processing. If
140+
* you want to reprocess this method can help you
141+
*
142+
* @return $this
143+
*/
144+
public function reProcess()
145+
{
146+
$this->_isProcessed = false;
147+
return $this;
148+
}
149+
138150
/**
139151
* Parse object to array
140152
*

0 commit comments

Comments
 (0)