You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating from 3.2.2 to 3.2.3, the code fixer produces the following patches due to the codestyle check failing all of the sudden. It seems to only be when using [] = (http://php.net/manual/en/function.list.php)
*/
public function invoicesOverviewAction(Request $request, Client $client)
{
- $handler = $this->handler_factory->create(InvoicePaymentHandlerType::class);+ $handler = $this->handler_factory->create(InvoicePaymentHandlerType::class);
[$payable_invoices, $invoices] = $this->getInvoices($client);
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
- $transformer = new ContractTransformer($options['contracts']);- $types = ['support.contact.question' => ContactData::QUESTION];+ $transformer = new ContractTransformer($options['contracts']);+ $types = ['support.contact.question' => ContactData::QUESTION];
[$important, $questions, $incidents, $requests] = $this->createContractBuckets($options['contracts']);
My best guess is that the blank line is now ignored, while it shouldn't be.
The text was updated successfully, but these errors were encountered:
gsherwood
changed the title
Equal sign alignment check broke after updating to 3.2.3
Equal sign alignment check broken when list syntax used before assignment operator
Mar 6, 2018
…ing assignments within closures
I had to revert the patch to fix#1922 because it wouldn't allow for the sniff to do recursion, which is what it now does when it finds a closure or anon class.
After updating from 3.2.2 to 3.2.3, the code fixer produces the following patches due to the codestyle check failing all of the sudden. It seems to only be when using
[] =
(http://php.net/manual/en/function.list.php)My best guess is that the blank line is now ignored, while it shouldn't be.
The text was updated successfully, but these errors were encountered: