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
  • Handlers
  • DirectHandler.php
  • Vladislav's avatar
    fix LimitedBy · 49bb42cc
    Vladislav committed Jun 16, 2021
    49bb42cc Browse Files
DirectHandler.php 289 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
namespace App\Service\Handlers;

class DirectHandler extends AdsHandler
{
    public function limited($response)
    {
        return $response['result']['LimitedBy'] ?? false;
    }

    protected function parse($response)
    {
        $this->response = $response->json();
    }
}