On 29.11.2018 at 12:24, Dan Ackroyd wrote:
> On Thu, 29 Nov 2018 at 09:59, Michał Brzuchalski
> wrote:
>>
>> I don't really know if it fits here but some weeks ago I was thinking about
>> annotations with "@" prefix
>>
>>
>> Which might work as supress all errors except fatal errors.
>>
>>
On Thu, 29 Nov 2018 at 09:59, Michał Brzuchalski wrote:
>
> I don't really know if it fits here but some weeks ago I was thinking about
> annotations with "@" prefix
>
>
> Which might work as supress all errors except fatal errors.
>
> Does that sound like a solution at all?
> The developer th
I don't really know if it fits here but some weeks ago I was thinking about
annotations with "@" prefix
and was considering to propose to handle @ (silence operator) similar way
as annotations, like:
$value = @ fopen('test.txt','rb+');
might be equivalent to:
$value = @SupressError(E_ALL) fopen(