Skip to content

Commit

Permalink
Modify PHPDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed May 20, 2015
1 parent d751f3f commit fc16a06
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions classes/content/sqlicontent.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
* $article->fields->body = $xmlContent;
* </code>
*
* @property-read SQLILocationFieldset $locations Available locations for this content
* @property-read SQLILocationSet $locations Available locations for this content
* @property mixed All "attributes" available from eZContentObject (See {@link eZContentObject::definition()}).
*/
class SQLIContent
Expand All @@ -62,7 +62,7 @@ class SQLIContent

/**
* Fieldset Holder
* @var SQLIFieldsetHolder
* @var SQLIContentFieldsetHolder
*/
public $fields;

Expand Down Expand Up @@ -452,8 +452,8 @@ public function __get( $name )
* Sets value to an attribute for the content object.
* All "classic" attributes can be used (See {@link eZContentObject::definition()}).
* If attribute doesn't exist, will throw an exception
* @param $name Attribute name
* @param $value Attribute value
* @param string $name Attribute name
* @param mixed $value Attribute value
* @throws ezcBasePropertyNotFoundException
* @return void
*/
Expand Down
8 changes: 4 additions & 4 deletions classes/content/sqlicontentfield.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ public function __get( $name )
* Sets value to an attribute for the content object attribute.
* All "classic" attributes can be used (See {@link eZContentObjectAttribute::definition()}).
* If attribute doesn't exist, will throw an exception
* @param $name Attribute name
* @param $value Attribute value
* @param string $name Attribute name
* @param mixed $value Attribute value
* @throws ezcBasePropertyNotFoundException
* @return void
*/
Expand Down Expand Up @@ -167,8 +167,8 @@ public function __toString()
/**
* Generic method for calling current attribute methods
* If method isn't implemented, will throw an exception
* @param $method Method name
* @param $arguments
* @param string $method Method name
* @param array $arguments
* @throws ezcBasePropertyNotFoundException
* @return mixed
*/
Expand Down
8 changes: 4 additions & 4 deletions classes/location/sqlilocation.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ public function __get( $name )
* Sets value to an attribute for the content node.
* All "classic" attributes can be used (See {@link eZContentObjectTreeNode::definition()}).
* If attribute doesn't exist, will throw an exception
* @param $name Attribute name
* @param $value Attribute value
* @param string $name Attribute name
* @param mixed $value Attribute value
* @throws ezcBasePropertyNotFoundException
* @return void
*/
Expand Down Expand Up @@ -133,8 +133,8 @@ public function __isset( $name )
/**
* Generic method for calling current content node methods.
* If method isn't implemented, will throw an exception
* @param $method Method name
* @param $arguments
* @param string $method Method name
* @param array $arguments
* @throws ezcBasePropertyNotFoundException
* @return mixed
*/
Expand Down
2 changes: 1 addition & 1 deletion classes/sourcehandlers/sqliimportabstracthandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ abstract class SQLIImportAbstractHandler

/**
* Data source (CSV, XML...)
* @var SQLICSVDoc|DOMDoc|SimpleXMLIterator
* @var SQLICSVDoc|DOMDocument|SimpleXMLIterator
*/
protected $dataSource;

Expand Down
2 changes: 1 addition & 1 deletion classes/sqliimportfactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final class SQLIImportFactory
{
/**
* Object Instance
* @var SQLIImport
* @var SQLIImportFactory
*/
private static $_instance;

Expand Down

0 comments on commit fc16a06

Please sign in to comment.