BlogHide Resteemssymfonydev (25)in phpstorm • 7 years ago{@InheritDoc} plugin for PhpStormDon't have time now to research if it's the right thing to do to include {@InheritDoc} tag, but if you do use it, make sure you have a plyugin for PhpStorm that get the comment from the inherited…symfonydev (25)in rollback • 7 years agoHow to implement a rollback featuresymfonydev (25)in behat • 7 years agoBug in behat 3.4.0 - No specifications found at path(s), This might be because of incorrect paths configuration in your `suites`.If anyone comes across this bug symfonydev (25)in symfony • 7 years agoMultiUpload of files in Symfony 3.2This helped tremendously: This repo above mentioned here: Only had to add this to config.yml: # Doctrine Configurationsymfonydev (25)in symfony • 7 years agoExecuting command line script for different environment (database)edp bin/console --env=behat for example: bin/console --env=behat fos:user:create admin [email protected] admin --super-admin; bin/console fos:user:activate admin;symfonydev (25)in forms • 7 years agoValidators in SymfonyExample of usage of @Assert\File /**symfonydev (25)in strings • 7 years agoString encoding in phpTo recognize the pasted character, there is a website that does that for you: Just copy the character and paste it into the website to get the informative description: There are a few…symfonydev (25)in command • 7 years agoCommand bus in SymfonyMaterials to read on command bus, commands and events in Symfony: Series of blogposts from Matthias Noback (the creator of simple-bus/SymfonyBridge bundle): Nice presentation showing…symfonydev (25)in docker • 7 years agoProviding explicit UID (if the user is the same on client and host) at docker run will help with file permissionssymfonydev (25)in sql • 7 years agoCheck if there are the same values for given columnNote that if you column a is of type VARCHAR and you're using MySQL, by default you'll get the same results for 'value', 'VALue', etc. SELECT email, COUNT(*) a FROM sometable GROUP BY a HAVING a…symfonydev (25)in assetic • 7 years agoAssetic bundle with Bootstrap 4Basic config for assetic bundle: Installing assets in Symfony Asset management in Symfony (merging /concatenating resources): assetic:symfonydev (25)in symfony • 7 years agoMysql/Doctrine/Symfony collation and case sensitivity issuesModifying the column charset and collation (official docs) ALTER TABLE CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;symfonydev (25)in symfony • 7 years agoMany or multiple UniqueContraints in table definition in Dontrine/Symfony@ORM\Table(symfonydev (25)in php • 7 years agoAnother day with php and docker development.A few docker containers helpful for development: With some commands needed to set up mysql account so that it can access apache/php container Workflow component - more control over the…symfonydev (25)in php • 7 years agoQuick and painless updating PHP 7.0 to PHP 7.1 on Ubuntusymfonydev (25)in doctrine • 7 years agoReason to use PHP 7.1 over PHP 7.0 and Doctrine drops 7.0Only this: Question is what's the support for 7.1 among various php packages. Latest Doctrine dropped support for php 7.0symfonydev (25)in behat • 7 years agoWhat are the advantages of BDD and Behat?What are the advantages of BDD and Behat? Best answered in the blog post by Everzet ( creator Behat, Mink, co-creator of PhpSpec) "People get upset when software doesn't update often. This is…symfonydev (25)in symfony • 7 years agoWhy is it worth using Symfony?Strategic point point of view: On the market since 22 Oct 2005 and is now a framework and a set of reusable components which are used by projects such as Drupal, Magento, Sylius, Joomla and…symfonydev (25)in symfony • 7 years agoHello World :)Web developer here. Topics that I'd like to discuss here are PHP (7 mostly. If you're not on it, move, and fast!), Symfony framework - currently Symfony 3 is used for my own projects and at work…