PHP Classes

File: README.md

Recommend this page to a friend!
  Packages of DeGraciaMathieu   Manager Laravel Examples   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Manager Laravel Examples
Manage objects that can be accessed using drivers
Author: By
Last change:
Date: 8 months ago
Size: 438 bytes
 

Contents

Class file image Download

Manager examples

Project samples for https://github.com/DeGraciaMathieu/Manager


use App\Managers\Weather\WeatherManager;

app(WeatherManager::class)->itsRainingNow('Paris'); // true
# Using the default driver configured by the getDefaultDriver method

app(WeatherManager::class)->driver('openweathermap')->itsRainingNow('Paris'); // true
app(WeatherManager::class)->driver('aerisweather')->itsRainingNow('Paris'); // true