Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Письменов Дмитрий Иванович / yourroomads

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • yourroomads
  • app
  • Service
  • AdsHandler.php
  • Евгений's avatar
    Улучшение #19452 · 0191d305
    Учет баллов при работе с АПИ
    Евгений committed May 05, 2021
    0191d305
AdsHandler.php 317 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
namespace App\Service;

use App\Service\Contract\APIRequest;

class AdsHandler{
    protected static $_instance;

    protected function __constructor(APIRequest $request = null){

    }

    public static function getInstance(APIRequest $request = null){
        self::$_instance = new self($request);
    }
}