howardjones/network-weathermap

View on GitHub
lib/Weathermap/Integrations/UserWebAPI.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Weathermap\Integrations;

class UserWebAPI
{
    /** @var MapManager $manager */
    private $manager;

    public function __construct($manager)
    {
        $this->manager = $manager;
    }
}