Skip to content

Commit

Permalink
[4.x] Resolve dynamically declared properties (#8999)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Varga <[email protected]>
  • Loading branch information
martinoak and jasonvarga authored Nov 15, 2023
1 parent f21bdfd commit 586eb7b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Console/Commands/GeneratorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
abstract class GeneratorCommand extends IlluminateGeneratorCommand
{
protected $package;
protected $shownAddonPathError;

/**
* Execute the console command.
Expand Down
1 change: 1 addition & 0 deletions src/Fieldtypes/Entries.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class Entries extends Relationship
protected $canSearch = true;
protected $statusIcons = true;
protected $formComponent = 'entry-publish-form';
protected $activeFilterBadges;

protected $formComponentProps = [
'initialActions' => 'actions',
Expand Down
1 change: 1 addition & 0 deletions src/Http/Resources/CP/Entries/Entries.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class Entries extends ResourceCollection

public $collects = ListedEntry::class;
protected $blueprint;
protected $columns;
protected $columnPreferenceKey;

public function blueprint($blueprint)
Expand Down
1 change: 1 addition & 0 deletions src/Http/Resources/CP/Submissions/Submissions.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class Submissions extends ResourceCollection

public $collects = ListedSubmission::class;
protected $blueprint;
protected $columnPreferenceKey;
protected $columns;

public function blueprint($blueprint)
Expand Down
1 change: 1 addition & 0 deletions src/Http/Resources/CP/Taxonomies/Terms.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class Terms extends ResourceCollection
public $collects = ListedTerm::class;
protected $blueprint;
protected $columnPreferenceKey;
protected $columns;

public function blueprint($blueprint)
{
Expand Down
1 change: 1 addition & 0 deletions src/Ignition/SolutionProviders/UsingOldClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

class UsingOldClass implements HasSolutionsForThrowable
{
protected $oldClass;
protected $class;

public function canSolve(Throwable $throwable): bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class GlobalVariablesRepositoryTest extends TestCase
{
private $directory;
private $repo;
private $globalRepo;

private function setUpSingleSite()
{
Expand Down

0 comments on commit 586eb7b

Please sign in to comment.