Skip to content

Commit

Permalink
Updated API documentation package tags
Browse files Browse the repository at this point in the history
Fixed some whitespace

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@47725 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
Sam Minnee committed Jan 8, 2008
1 parent 5ffeb1a commit d27937f
Show file tree
Hide file tree
Showing 157 changed files with 1,596 additions and 895 deletions.
6 changes: 6 additions & 0 deletions api/RSSFeed.php
@@ -1,4 +1,10 @@
<?php

/**
* @package sapphire
* @subpackage integration
*/

/**
* RSSFeed class
*
Expand Down
7 changes: 6 additions & 1 deletion api/RestfulService.php
@@ -1,5 +1,10 @@
<?php

/**
* @package sapphire
* @subpackage integration
*/

/**
* RestfulService class allows you to consume various RESTful APIs.
* Through this you could connect and aggregate data of various web services.
Expand Down Expand Up @@ -65,7 +70,7 @@ function connect(){
if($this->rawXML != ""){
// save the response in cache
$fp = @fopen($cache_path,"w+");
@fwrite($fp,$this->rawXML);
@fwrite($fp,$this->rawXML);
@fclose($fp);

if($this->checkErrors == true) {
Expand Down
8 changes: 8 additions & 0 deletions api/SapphireSoapServer.php
@@ -1,5 +1,13 @@
<?php

/**
* @package sapphire
* @subpackage integration
*/

/**
* Soap server class
*/
class SapphireSoapServer extends Controller {
static $methods = array();
static $xsd_types = array(
Expand Down
6 changes: 6 additions & 0 deletions api/SimplePie.php
@@ -1,4 +1,10 @@
<?php

/**
* @package sapphire
* @subpackage integration
*/

/****************************************************
SIMPLEPIE
A PHP-Based RSS and Atom Feed Framework
Expand Down

0 comments on commit d27937f

Please sign in to comment.