We notice some bugs are being ignored while lots of intents/changes that are just introducing extra layers of execution without other benefits get attention #54753
Replies: 3 comments 2 replies
-
The issue created by maintaining Backwards CompatibilityThis is a fairly typical consequence of preserving backwards compatibility.
And THAT is why major versions exist - so that you can remove the bolt-ons and fit them nicely into the architecture giving it newly clean lines. Of course this means developers having to recode, so as your user base grows you become more and more reluctant to clean up the architecture when you have a major release (and it also becomes harder and harder to do so as the code base grows because of the amount of framework code you need to change and test). However, neither of these is an excuse in itself. Refactoring tools now exist to help developers to make the code changes to switch to a higher version, and sometimes you need to break things to clean up the architecture in the long-term longevity interests of the framework. This decision making is also made more difficult by an increasing level of commercialism which can (if you are not careful) introduce a bias or conflict of interests on whether or not to make these breaking architectural changes in major versions. Now, I am NOT saying that this is actually the case with Laravel here - I am simply not knowledgeable enough at the level of detail needed to make ANY judgement about this - my comments above are generic. What I will say is that being the leader of this type of framework project is IMO a VERY difficult juggling/balancing act choosing between keeping the architecture clean and not creating too much grief for developers when you deliberately break things with a major version change. None of us have either the depth of insight or the responsibility for making these choices - that person is @taylorotwell - and I think I do know enough about these difficulties NOT to second guess him. What I will say is this... whilst we may all rile a little about Taylor's reluctance to accept PRs, when it comes to trying to preserve a clean architecture, rejecting community PRs is almost certainly the first line of defence. But I do worry a little when some of the pre-announcements for v12 stress that one of the major bullet points is the high level of backwards compatibility. However I do remember how major the breaking the changes were to get us from PHP 4 to PHP 8 and that the community both coped with these changes and ultimately benefited from them (Laravel and its ecosystem would probably not be possible in PHP 4), and I would encourage @taylorotwell to be more bullish about breaking changes in new major Laravel versions if needed in order to keep the architecture clean. |
Beta Was this translation helpful? Give feedback.
-
Laravel as a new languageI am not sure I have enough knowledge to be able to comment on the pros and cons of using closures or callables in the way @macropay-solutions is calling out here. But, my belief is that Laravel has never attempted to try to avoid the need for its users to know PHP. I think that the objectives of a framework are (in priority order):
Nowhere in this list is the idea that Laravel is a language in itself, and that you don't need to understand PHP. And whatever building blocks Laravel provides to avoid you having to code (or miscode and debug) the same old functionality - and what a broad set of building blocks it is - whilst you can often just butt these building blocks together (which is in itself a testament to how great it is) sometimes you still need to bridge between these building blocks with bespoke code. Furthermore, as I am sure @macropay-solutions would agree, the documentation level of Laravel is really only a starter, and that you frequently need to read the code to understand how to use that functionality to its fullest - certainly I find myself doing that quite a lot. Fortunately Laravel is open source - however imagine if you didn't have access to the source code, and the version you downloaded had been obfuscated. Just how difficult would it be to use Laravel then? The point of this is that if you need to read the code, then you need to know PHP to be able to do so. Of course, the knowledge you need to read and understand PHP is a lot less than knowing enough to be able to write it. |
Beta Was this translation helpful? Give feedback.
-
An official package with traits and helpers that would incorporate all the overhead would be pure GOLD. In that way only who wants overhead can use it. Also if the team does not want to fix bugs (example #51825) in the core because of backwards compatibility issues, those bugs could be fixed via a lib also. |
Beta Was this translation helpful? Give feedback.
-
Laravel is named by many a new PHP language.
If you start learning PHP by using laravel you are in deep shit.
You will learn N layers of functions that behind the scenes will use native php functions but, to get to those, you will have to dig deep into the framework.
Many merge requests want to or already introduced things like:
and we could go on for minutes but, we won't do that here.
The point is, all these are is just USELESS overhead from the performance and logic points of views.
People are used to not write code anymore, they expect the framework to write it for them. There will come a day when AI will do that and they will stop earning...
A side effect of this habit is that you need to learn the framework's code to know exactly what is does when using these nested extra layers just because you want your php files to contain as less text as possible.
But, only few can learn it or want to learn it. This can be seen by the number of non issues created as issues despite all laravel code is written in php not in another language.
In contrast to this, old issues that are considered corner cases are NOT FIXED...
Also, these new "aspect" changes are introducing new bugs and sometimes even breaking changes.
We had to fix numerous old bugs (not fixed to this day in laravel) by using macros, callback bindings, overwrite the Eloquent and Query Builders, Relations, Model etc. and when breaking changes to the functions' definition happen in these overwritten classes, then we need to adapt to the latest changes and that is not so easy when we want to keep compatibility to laravel >=8.
You would ask yourself "Why keep compatibility to a version that is not supported anymore?".
Answer is: Because [old] bugs are FEWER than [old - old_fixed + new] bugs.
Beta Was this translation helpful? Give feedback.
All reactions