Skip to content

Commit

Permalink
Class App refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
zahardev committed Jul 30, 2021
1 parent 9635aba commit 4cee082
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions app/class-app.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,14 @@

namespace PCM;

use PCM\Interfaces\Singleton;
use PCM\Interfaces\Singleton as Singleton_Interface;
use PCM\Managers\Columns_Manager;
use PCM\Managers\Filters_Manager;
use PCM\Traits\Singleton as Trait_Singleton;


/**
* @method $this instance()
* */
class App implements Singleton {
class App implements Singleton_Interface {

use Trait_Singleton;

protected $field_objects;
use Traits\Singleton;

public function init() {
if ( ! is_admin() ) {
Expand Down

0 comments on commit 4cee082

Please sign in to comment.