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 | |
/**************************************************************************** | |
PHP CURL functions for getting data or asytnchronously saving it to file. | |
It is header redirect tolerant. like the 302 http status. | |
Save data to file with cURL: save_data_to_file_w_curl($url,$pathToFile); | |
Get data with cURL get_data_w_curl($url); | |
/** | |
* MIT License |
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 | |
/** | |
* Following binding works! | |
*/ | |
namespace MyPackage\Model; | |
class User | |
{ | |
} |