Feed items

  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_argument.inc on line 48.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 111.
  • warning: Declaration of views_plugin_row_node_view::options_form(&$form, &$form_state) should be compatible with views_plugin_row::options_form($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/modules/node/views_plugin_row_node_view.inc on line 35.

JSON API Resources in Laravel


Consistent API responses are important these days, and finding a standard is a great way to level up your approach. In this tutorial, we will look at JSON API
The post JSON API Resources in Laravel appeared first on Laravel News.





A Week of Symfony #814 (1-7 August 2022)

This week, the upcoming Symfony 6.2 version added features such as allowing to extend the #[When] attribute, adding conditional types to conditional configuration builders, introduced a new messenger:count command that lists the pending messages per transport and improved the #IsGranted attribute to





[news] Yii Runner 1.2.0

Version 1.2.0 of Yii Runnner package was tagged. This version adds config definition to DI container.





[news] Yii Console Runner 1.1.0

Version 1.1.0 of Yii Console Runnner package was tagged. This version adds passing input aggregate to the console application.





[news] Yii Console 1.3.0

Version 1.3.0 of Yii Console package was tagged. This version adds collecting console command name to ApplicationStartup class.





Building your own Laravel Packages


Sharing code has never been more accessible, and installing PHP packages has become convenient, building packages not so much.
The post Building your own Laravel Packages appeared first on Laravel News.





Plain Old Functions as Helpers

Ember 4.5 introduced a long-awaited feature: the ability to use normal JavaScript functions as helpers.
Today, this means two things:

  1. You can use (bound) methods on your backing class as helpers directly.
  2. You can define function-based helpers without importing and using helper().

In the future, it will also work extra nicely with the upcoming feature!
Let's see what each of those looks like.