first commit
This commit is contained in:
25
wp-content/plugins/brizy/admin/cloud/abstract-bridge.php
Normal file
25
wp-content/plugins/brizy/admin/cloud/abstract-bridge.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Class Brizy_Admin_Cloud_AbstractUploader
|
||||
*/
|
||||
abstract class Brizy_Admin_Cloud_AbstractBridge implements Brizy_Admin_Cloud_BridgeInterface {
|
||||
|
||||
/**
|
||||
* @var Brizy_Admin_Cloud_Client
|
||||
*/
|
||||
protected $client;
|
||||
|
||||
/**
|
||||
* Brizy_Admin_Cloud_AbstractUploader constructor.
|
||||
*
|
||||
* @param Brizy_Admin_Cloud_Client $client
|
||||
*/
|
||||
public function __construct( $client ) {
|
||||
$this->client = $client;
|
||||
}
|
||||
|
||||
public function getCurrentCloudAccountId() {
|
||||
return $this->client->getBrizyProject()->getCloudAccountId();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user