Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 7, 2022

Bumps blumilksoftware/codestyle from 0.4.3 to 1.9.0.

Release notes

Sourced from blumilksoftware/codestyle's releases.

v1.9.0 - anonymous functions spacing

As implemented in #84.

v1.8.0 - simple to complex string variables

As described in #80 and implemented in #82, with this release this:

$test = "test";
$concat = "test $test test";
$legacy = "Hello ${test}!";

will be transformed to this:

$test = "test";
$concat = "test $test test";
$legacy = "Hello {$test}!";

v1.7.0 - trailing commas in match expressions

As described in #39 and implemented in #79, with this release this:

return match ($i) {
    1 => 1,
    2 => 3,
    default => 0
};

will be transformed to this:

return match ($i) {
    1 => 1,
    2 => 3,
    default => 0,
};

v1.6.0 - empty lines at the file header

As described in #67 and implemented in #76, from now we are enforcing a proper blank lines in every file "head section".

With these changes this:

<?php
declare(strict_types=1);
namespace Test;
class Test
{
}
</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [blumilksoftware/codestyle](https://github.com/blumilksoftware/codestyle) from 0.4.3 to 1.9.0.
- [Release notes](https://github.com/blumilksoftware/codestyle/releases)
- [Commits](blumilksoftware/codestyle@v0.4.3...v1.9.0)

---
updated-dependencies:
- dependency-name: blumilksoftware/codestyle
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Nov 7, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Dec 26, 2022

Superseded by #203.

@dependabot dependabot bot closed this Dec 26, 2022
@dependabot dependabot bot deleted the dependabot/composer/main/blumilksoftware/codestyle-1.9.0 branch December 26, 2022 18:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant