Can We Have Static Types in PHP without PHP 7 or HHVM?
July 25, 2016Now that PHP 7 has been out for a while with interesting features like error handling, null coalescing operator, scalar type declarations, etc., we often hear the people still stuck with PHP 5 saying it has a weak typing system, and that things quickly become unpredictable.[author_more] Even though this is partially...
Your Own Custom Annotations – More than Just Comments!
June 20, 2016In this article, we are going to look at how we can create and use our own custom annotations in a Symfony 3 application. You know annotations right? They are the docblock metadata/configuration we see above classes, methods and properties. You’ve most likely seen them used to declare Controller routes (@Route())...