mage2pro / core

Mage2.PRO core package
https://upwork.com/fl/mage2pro
MIT License
10 stars 13 forks source link

Use the `callable` type #404

Open dmitrii-fediuk opened 2 months ago

dmitrii-fediuk commented 2 months ago

callable is supported by PHP ≥ 5.4:

function a(callable $f) {return $f();}
a(function() {return 'TEST';});

3v4l.org/ZtdKu