Jump to content

Break Chain


The Little Guy

Recommended Posts

I have a chain of methods, is there anyway to end the chain half way through if some particular event happens?

 

Here is an example (not the best but still an example):

<?php
$age = $class->post("age")->callback(funciton(){
        global $class;
        if($class->string() < 18){
                // end the execution of the chain, doesn't execute toInt()
        }
})->toInt();
?>

Link to comment
Share on other sites

An exception can break out of anything.  But if you don't always want to execute a particular method you probably shouldn't be writing it in a chain in the first place.  Or you can replace it with a mutant method which can handle both types of output from the previous stage in the chain.  That's the typical approach in functional and logic languages where you have no choice about chaining.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.