Skip to content

Commit

Permalink
reformated the docblock comments (looked a litle strange after
Browse files Browse the repository at this point in the history
replacing the tabs)
  • Loading branch information
Dominik Bonsch committed Jan 22, 2013
1 parent 8ccc3a4 commit ace1796
Showing 1 changed file with 56 additions and 56 deletions.
112 changes: 56 additions & 56 deletions Classes/PHPExcel/DocumentProperties.php
Expand Up @@ -46,84 +46,84 @@ class PHPExcel_DocumentProperties
/**
* Creator
*
* @var string
* @var string
*/
private $_creator = 'Unknown Creator';

/**
* LastModifiedBy
*
* @var string
* @var string
*/
private $_lastModifiedBy;

/**
* Created
*
* @var datetime
* @var datetime
*/
private $_created;

/**
* Modified
*
* @var datetime
* @var datetime
*/
private $_modified;

/**
* Title
*
* @var string
* @var string
*/
private $_title = 'Untitled Spreadsheet';

/**
* Description
*
* @var string
* @var string
*/
private $_description = '';

/**
* Subject
*
* @var string
* @var string
*/
private $_subject = '';

/**
* Keywords
*
* @var string
* @var string
*/
private $_keywords = '';

/**
* Category
*
* @var string
* @var string
*/
private $_category = '';

/**
* Manager
*
* @var string
* @var string
*/
private $_manager = '';

/**
* Company
*
* @var string
* @var string
*/
private $_company = 'Microsoft Corporation';

/**
* Custom Properties
*
* @var string
* @var string
*/
private $_customProperties = array();

Expand All @@ -142,7 +142,7 @@ public function __construct()
/**
* Get Creator
*
* @return string
* @return string
*/
public function getCreator() {
return $this->_creator;
Expand All @@ -151,8 +151,8 @@ public function getCreator() {
/**
* Set Creator
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setCreator($pValue = '') {
$this->_creator = $pValue;
Expand All @@ -162,7 +162,7 @@ public function setCreator($pValue = '') {
/**
* Get Last Modified By
*
* @return string
* @return string
*/
public function getLastModifiedBy() {
return $this->_lastModifiedBy;
Expand All @@ -171,8 +171,8 @@ public function getLastModifiedBy() {
/**
* Set Last Modified By
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setLastModifiedBy($pValue = '') {
$this->_lastModifiedBy = $pValue;
Expand All @@ -182,7 +182,7 @@ public function setLastModifiedBy($pValue = '') {
/**
* Get Created
*
* @return datetime
* @return datetime
*/
public function getCreated() {
return $this->_created;
Expand All @@ -191,8 +191,8 @@ public function getCreated() {
/**
* Set Created
*
* @param datetime $pValue
* @return PHPExcel_DocumentProperties
* @param datetime $pValue
* @return PHPExcel_DocumentProperties
*/
public function setCreated($pValue = null) {
if ($pValue === NULL) {
Expand All @@ -212,7 +212,7 @@ public function setCreated($pValue = null) {
/**
* Get Modified
*
* @return datetime
* @return datetime
*/
public function getModified() {
return $this->_modified;
Expand All @@ -221,8 +221,8 @@ public function getModified() {
/**
* Set Modified
*
* @param datetime $pValue
* @return PHPExcel_DocumentProperties
* @param datetime $pValue
* @return PHPExcel_DocumentProperties
*/
public function setModified($pValue = null) {
if ($pValue === NULL) {
Expand All @@ -242,7 +242,7 @@ public function setModified($pValue = null) {
/**
* Get Title
*
* @return string
* @return string
*/
public function getTitle() {
return $this->_title;
Expand All @@ -251,8 +251,8 @@ public function getTitle() {
/**
* Set Title
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setTitle($pValue = '') {
$this->_title = $pValue;
Expand All @@ -262,7 +262,7 @@ public function setTitle($pValue = '') {
/**
* Get Description
*
* @return string
* @return string
*/
public function getDescription() {
return $this->_description;
Expand Down Expand Up @@ -302,7 +302,7 @@ public function setSubject($pValue = '') {
/**
* Get Keywords
*
* @return string
* @return string
*/
public function getKeywords() {
return $this->_keywords;
Expand All @@ -311,8 +311,8 @@ public function getKeywords() {
/**
* Set Keywords
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setKeywords($pValue = '') {
$this->_keywords = $pValue;
Expand All @@ -322,7 +322,7 @@ public function setKeywords($pValue = '') {
/**
* Get Category
*
* @return string
* @return string
*/
public function getCategory() {
return $this->_category;
Expand All @@ -331,8 +331,8 @@ public function getCategory() {
/**
* Set Category
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setCategory($pValue = '') {
$this->_category = $pValue;
Expand All @@ -342,7 +342,7 @@ public function setCategory($pValue = '') {
/**
* Get Company
*
* @return string
* @return string
*/
public function getCompany() {
return $this->_company;
Expand All @@ -351,8 +351,8 @@ public function getCompany() {
/**
* Set Company
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setCompany($pValue = '') {
$this->_company = $pValue;
Expand All @@ -362,7 +362,7 @@ public function setCompany($pValue = '') {
/**
* Get Manager
*
* @return string
* @return string
*/
public function getManager() {
return $this->_manager;
Expand All @@ -371,8 +371,8 @@ public function getManager() {
/**
* Set Manager
*
* @param string $pValue
* @return PHPExcel_DocumentProperties
* @param string $pValue
* @return PHPExcel_DocumentProperties
*/
public function setManager($pValue = '') {
$this->_manager = $pValue;
Expand All @@ -382,7 +382,7 @@ public function setManager($pValue = '') {
/**
* Get a List of Custom Property Names
*
* @return array of string
* @return array of string
*/
public function getCustomProperties() {
return array_keys($this->_customProperties);
Expand All @@ -391,8 +391,8 @@ public function getCustomProperties() {
/**
* Check if a Custom Property is defined
*
* @param string $propertyName
* @return boolean
* @param string $propertyName
* @return boolean
*/
public function isCustomPropertySet($propertyName) {
return isset($this->_customProperties[$propertyName]);
Expand All @@ -401,8 +401,8 @@ public function isCustomPropertySet($propertyName) {
/**
* Get a Custom Property Value
*
* @param string $propertyName
* @return string
* @param string $propertyName
* @return string
*/
public function getCustomPropertyValue($propertyName) {
if (isset($this->_customProperties[$propertyName])) {
Expand All @@ -414,8 +414,8 @@ public function getCustomPropertyValue($propertyName) {
/**
* Get a Custom Property Type
*
* @param string $propertyName
* @return string
* @param string $propertyName
* @return string
*/
public function getCustomPropertyType($propertyName) {
if (isset($this->_customProperties[$propertyName])) {
Expand All @@ -427,15 +427,15 @@ public function getCustomPropertyType($propertyName) {
/**
* Set a Custom Property
*
* @param string $propertyName
* @param mixed $propertyValue
* @param string $propertyType
* 'i' : Integer
* 'f' : Floating Point
* 's' : String
* 'd' : Date/Time
* 'b' : Boolean
* @return PHPExcel_DocumentProperties
* @param string $propertyName
* @param mixed $propertyValue
* @param string $propertyType
* 'i' : Integer
* 'f' : Floating Point
* 's' : String
* 'd' : Date/Time
* 'b' : Boolean
* @return PHPExcel_DocumentProperties
*/
public function setCustomProperty($propertyName,$propertyValue='',$propertyType=NULL) {
if (($propertyType === NULL) || (!in_array($propertyType,array(self::PROPERTY_TYPE_INTEGER,
Expand Down

0 comments on commit ace1796

Please sign in to comment.