Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/2.15.x' into 1.x
Browse files Browse the repository at this point in the history
* upstream/2.15.x:
  Make property private in final class
  Update actions/checkout action to v3
  Update actions/cache action to v3
  Enable installation of PHPCS plugins that setup CS rulesets
  Add renovate.json
  Remove codelicia/xulieta as a dev dependencies
  Raise awareness of current Russia-Ukraine situation, targeting Russian 🇷🇺  readers
  • Loading branch information
nicolas-grekas committed Mar 17, 2023
2 parents a527c9d + 04e124d commit 70d9e16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: "Checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand All @@ -41,7 +41,7 @@ jobs:
tools: composer:v2, cs2pr

- name: "Cache dependencies"
uses: "actions/cache@v2"
uses: "actions/cache@v3"
with:
path: |
~/.composer/cache
Expand Down
2 changes: 1 addition & 1 deletion src/ProxyManager/Inflector/ClassNameInflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

final class ClassNameInflector implements ClassNameInflectorInterface
{
protected $proxyNamespace;
private $proxyNamespace;
/** @var int @TODO annotation still needed for phpstan to understand this */
private $proxyMarkerLength;
private $proxyMarker;
Expand Down

0 comments on commit 70d9e16

Please sign in to comment.