mercredi 28 février 2018

Shorthand if/else php not continue

How to get to the next argument event if the second or third is false ? in my case gender is false but marital status is true but they stop at gender and not execute marital status. how can I make it continue to next argument event second or third is false ?

public function creditScore($user, $basic_information)
    {
        $basic_information->birth_date ? dispatch(new CalculateAge($user)) : false;
        $basic_information->dependents ? dispatch(new CalculateDependents($user)) : false;
        $basic_information->education ? dispatch(new CalculateEducation($user)) : false;
        $basic_information->gender ? dispatch(new CalculateGender($user)) : false;
        $basic_information->marital_status ? dispatch(new CalculateMaritalStatus($user)) : false;
    }



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2ovUMz3
via IFTTT

Aucun commentaire:

Enregistrer un commentaire