Tac Tacelosky
Tac Tacelosky
https://www.postgresql.org/docs/current/ddl-generated-columns.html full text search seems like a perfect use of generated columns, e.g. ALTER TABLE se_details ADD COLUMN ts tsvector GENERATED ALWAYS AS (to_tsvector('english', event_narrative)) STORED; Since the column with...
Prepare for Symfony 6 by removing deprecations.
I've started to work on fixing deprecation warnings so that this excellent app can run under Symfony 6 when it comes out in a few weeks. Symfony 6 requires PHP8,...
I'm installing this on a Windows box (my dev environment) and wanted to point out the issues I ran across. I'm very new to Symfony. I ran into trouble with...
I've been running phpstan level 6, and see this code ```php if (isset($this->footnotes[$node_id])) { $num =& $this->footnotes_numbers[$node_id]; if (!isset($num)) { ``` I'm wondering what the purpose of =& is. Also,...
Congrats on the release of AdminLTEBundle 3.3! It appears that this bundle is based on Bootstrap 3 and the AdminLTE package version 2 (which uses version 3). AdminLTE (from Colorlib)...
With Symfony 6 around the corner and PHP 8 nearly a year old, and Bootstrap now at 5.1, I'd like to brainstorm about a new-and-improved branch of AdminLTEBundle, using the...
When I add a basic table (https://getbootstrap.com/docs/4.0/content/tables/#table-head-options) to the demo home page, using standard bootstrap classes, the styling isn't applied. ```html # First Last Handle ```  When I try...
I'm trying to implement the top menu from adminlte in the bundle.  But the top navbar isn't rendering right:  https://shakespeare-plays.herokuapp.com/typography My request is that the bundle add a...
in Partials/_menu.html.twig, the template to render KNP Menus, the link to the label is missing for the adminlte_3 branch. ```twig {% block spanElement %} {% import _self as selfMacros %}...