View file PF.Src/Core/CDN.php

File size: 281B
<?php

namespace Core;

/**
 *
 * @method put($file, $name = null)
 * @method remove($file)
 * @method getServerId()
 * @method getUrl($path)
 * @method setServerId()
 * @method __returnObject()
 */
abstract class CDN {
	public function __call($method, $args) {
		return null;
	}
}