Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fusewp/core / src / Integrations / HighLevel / AdminSettingsPage.php
Size: Mime:
<?php

namespace FuseWP\Core\Integrations\HighLevel;

use FuseWP\Core\Integrations\AbstractOauthAdminSettingsPage;

class AdminSettingsPage extends AbstractOauthAdminSettingsPage
{
    protected $highlevelInstance;

    /**
     * @param HighLevel $highlevelInstance
     */
    public function __construct($highlevelInstance)
    {
        parent::__construct($highlevelInstance);

        $this->highlevelInstance = $highlevelInstance;
    }
}