Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Fabio

Fabio

Fabio has asked 4 questions and find answers to 46 problems.

Stats

3.1k
EtPoint
1.3k
Vote count
4
questions
46
answers

About

function development_completed($did_you_debug) {
    if($did_you_debug === true) { 
        return true;
    }
    return false;
}

ALWAYS DEBUG FIRST!