Skip to content

Commit

Permalink
Merge pull request #151 from claytoncollie/php-8-2-fixes
Browse files Browse the repository at this point in the history
Add properties to classes
  • Loading branch information
darrenjacoby authored Aug 8, 2024
2 parents c6ef7c5 + 38719e0 commit 60415eb
Show file tree
Hide file tree
Showing 16 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Admin/Appearance.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Appearance
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Comments
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Dashboard
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Media.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Media
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Pages.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Pages
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Plugins
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Posts
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Settings
{
protected $config;

/**
* Initialize
*
Expand Down
1 change: 1 addition & 0 deletions src/Admin/Support/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
*/
class Router
{
protected $key;
protected $routes;
protected $route = false;

Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Tools.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
class Tools
{
protected $config;

/**
* Initialize
*
Expand Down
2 changes: 2 additions & 0 deletions src/Admin/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
*/
class Users
{
protected $config;

/**
* Initialize
*
Expand Down
1 change: 1 addition & 0 deletions src/Application/Media/Sizes.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
*/
class Sizes
{
protected $api;
protected $config;
protected $sizes;
protected $defaults;
Expand Down
1 change: 1 addition & 0 deletions src/Application/Media/Uploads.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/
class Uploads
{
protected $api;
protected $config;

/**
Expand Down
1 change: 1 addition & 0 deletions src/Application/Permalinks.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*/
class Permalinks
{
protected $api;
protected $config;

/**
Expand Down
1 change: 1 addition & 0 deletions src/Application/Privacy.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*/
class Privacy
{
protected $api;
protected $config;

/**
Expand Down
3 changes: 3 additions & 0 deletions src/UserInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
*/
class UserInterface
{
protected $routeExport;
protected $routeImport;

/**
* Initialize
*/
Expand Down

0 comments on commit 60415eb

Please sign in to comment.