diff --git a/src/Components/Blocks/BlockAcquisition.php b/src/Components/Blocks/BlockAcquisition.php new file mode 100644 index 0000000..da125c6 --- /dev/null +++ b/src/Components/Blocks/BlockAcquisition.php @@ -0,0 +1,15 @@ +acquired; + } +} diff --git a/src/Components/Blocks/ContinuableBlockDefaultInterrupt.php b/src/Components/Blocks/ContinuableBlockDefaultInterrupt.php new file mode 100644 index 0000000..67fe696 --- /dev/null +++ b/src/Components/Blocks/ContinuableBlockDefaultInterrupt.php @@ -0,0 +1,28 @@ +interrupted = $isInterrupted; + + return $New; + } + + /** + * @return bool + */ + public function isInterrupted() + { + return $this->interrupted; + } +}