Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 259 Bytes

e11.md

File metadata and controls

23 lines (13 loc) · 259 Bytes

E11

Using the error @ supression symbol is a bad idea.

<?php
class Test{


    public function __construct(){

        @$this->fetch();
    }


    public function fetch(){

        /// Something can go wrong. And you woudn't know
    }
}