From d03d940f6a55e1c9bdd5d155eab470e1d9a5c9a6 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Mon, 15 Mar 2021 19:47:22 +0100 Subject: [PATCH 1/3] optimized CHANGELOG.md --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99dfad9..d6424fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 3.0.1 - 2020-09-09 +## [3.0.1] - 2020-09-09 ### Changed - dependency to Flow ^6.3 -## 3.0.0 - 2020-08-31 - +## [3.0.0] - 2020-08-31 Start of the changelog. From a1882a2b11e9e2d462190aa8e8e920b0a7fad193 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Mon, 15 Mar 2021 19:57:44 +0100 Subject: [PATCH 2/3] optimized CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6424fc..7372a5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + ## [3.0.1] - 2020-09-09 ### Changed - dependency to Flow ^6.3 From ba7e6ce33f0e30a831edfd9788ca33a7aeddeb6d Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Tue, 13 Apr 2021 08:51:04 +0200 Subject: [PATCH 3/3] code style changes --- Migrations/Code/Version20170603120900.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Migrations/Code/Version20170603120900.php b/Migrations/Code/Version20170603120900.php index ff218d9..144ed6d 100644 --- a/Migrations/Code/Version20170603120900.php +++ b/Migrations/Code/Version20170603120900.php @@ -30,14 +30,14 @@ class Version20170603120900 extends AbstractMigration foreach ($validators as $key => $validator) { if (!isset($validator['validator']) || !isset($validator['options'])) { $this->showWarning( - 'The Validation.yaml files contained no validator or options for validation: ' . - '"' . $validatorName . '.' . $key . '". It was not migrated.' + 'The Validation.yaml files contained no validator or options for validation: ' + . '"' . $validatorName . '.' . $key . '". It was not migrated.' ); continue; } if (isset($validator['property'])) { - $newConfiguration['properties'][$validator['property']][$validator['validator']] - = $validator['options']; + $newConfiguration['properties'][$validator['property']][$validator['validator']] = + $validator['options']; } else { $newConfiguration['self'][$validator['validator']] = $validator['options']; }