This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This class has a static a method `run` which needs to pass a callback method in order to get back the values | |
* for minutes and seconds | |
* If you need to show number values with zeros on pad start you have an example at the end of this code: | |
* Countdown | |
* run {method} | |
* @author Eledi Dyrkaj <[email protected]> | |
*/ | |
export class Countdown { | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Copyright (c) 2017. Ezeclip | |
*/ | |
namespace App\Services; | |
class MapService { | |
// Define Constants | |
const GOOGLE_API_KEY = "XXX"; |