예제 #1
0
파일: CURL.php 프로젝트: hutchike/YAWF
 /**
  * Set the content to be returned by CURL method calls
  *
  * @param Array $content the content to be returned by CURL method calls
  */
 public static function set_mock_returned_content($content)
 {
     assert('is_string($content)');
     self::$returned_content = $content;
 }