Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jun 13, 2022

Bumps blumilksoftware/codestyle from 0.4.3 to 1.6.0.

Release notes

Sourced from blumilksoftware/codestyle's releases.

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
{
}

will be fixed into:

<?php
declare(strict_types=1);
namespace Test;
class Test
{
}

v1.5.0 - object operator spacing

As described in #74 and implemented in #75, from now we are enforcing a proper spacing in object operators. Anonymous functions spacing (#11) was fixed too.

With these changes this:

        $array = $this ->array;
        if ($this ?-> nullable) {
            return array_filter($array, fn (int $i): bool => $i % 2 === 0);
        }

will be fixed into:

        $array = $this->array;
        if ($this?->nullable) {
            return array_filter($array, fn(int $i): bool => $i % 2 === 0);
        }

v1.4.0 - Enforce non-Yoda conditions

As described in blumilksoftware/codestyle#69 and implemented in blumilksoftware/codestyle#72, from now yoda conditions will be fixed.

v1.3.0 - ${} string interpolation enforcing removal

As described in #68 and implemented in #70, from now we are not enforcing ${} string interpolation.

... (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.6.0.
- [Release notes](https://github.com/blumilksoftware/codestyle/releases)
- [Commits](blumilksoftware/codestyle@v0.4.3...v1.6.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 Jun 13, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jul 18, 2022

Superseded by #168.

@dependabot dependabot bot closed this Jul 18, 2022
@dependabot dependabot bot deleted the dependabot/composer/main/blumilksoftware/codestyle-1.6.0 branch July 18, 2022 18:09
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