Skip to content

Commit ace1796

Browse files
author
Dominik Bonsch
committed
reformated the docblock comments (looked a litle strange after
replacing the tabs)
1 parent 8ccc3a4 commit ace1796

File tree

1 file changed

+56
-56
lines changed

1 file changed

+56
-56
lines changed

Classes/PHPExcel/DocumentProperties.php

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -46,84 +46,84 @@ class PHPExcel_DocumentProperties
4646
/**
4747
* Creator
4848
*
49-
* @var string
49+
* @var string
5050
*/
5151
private $_creator = 'Unknown Creator';
5252

5353
/**
5454
* LastModifiedBy
5555
*
56-
* @var string
56+
* @var string
5757
*/
5858
private $_lastModifiedBy;
5959

6060
/**
6161
* Created
6262
*
63-
* @var datetime
63+
* @var datetime
6464
*/
6565
private $_created;
6666

6767
/**
6868
* Modified
6969
*
70-
* @var datetime
70+
* @var datetime
7171
*/
7272
private $_modified;
7373

7474
/**
7575
* Title
7676
*
77-
* @var string
77+
* @var string
7878
*/
7979
private $_title = 'Untitled Spreadsheet';
8080

8181
/**
8282
* Description
8383
*
84-
* @var string
84+
* @var string
8585
*/
8686
private $_description = '';
8787

8888
/**
8989
* Subject
9090
*
91-
* @var string
91+
* @var string
9292
*/
9393
private $_subject = '';
9494

9595
/**
9696
* Keywords
9797
*
98-
* @var string
98+
* @var string
9999
*/
100100
private $_keywords = '';
101101

102102
/**
103103
* Category
104104
*
105-
* @var string
105+
* @var string
106106
*/
107107
private $_category = '';
108108

109109
/**
110110
* Manager
111111
*
112-
* @var string
112+
* @var string
113113
*/
114114
private $_manager = '';
115115

116116
/**
117117
* Company
118118
*
119-
* @var string
119+
* @var string
120120
*/
121121
private $_company = 'Microsoft Corporation';
122122

123123
/**
124124
* Custom Properties
125125
*
126-
* @var string
126+
* @var string
127127
*/
128128
private $_customProperties = array();
129129

@@ -142,7 +142,7 @@ public function __construct()
142142
/**
143143
* Get Creator
144144
*
145-
* @return string
145+
* @return string
146146
*/
147147
public function getCreator() {
148148
return $this->_creator;
@@ -151,8 +151,8 @@ public function getCreator() {
151151
/**
152152
* Set Creator
153153
*
154-
* @param string $pValue
155-
* @return PHPExcel_DocumentProperties
154+
* @param string $pValue
155+
* @return PHPExcel_DocumentProperties
156156
*/
157157
public function setCreator($pValue = '') {
158158
$this->_creator = $pValue;
@@ -162,7 +162,7 @@ public function setCreator($pValue = '') {
162162
/**
163163
* Get Last Modified By
164164
*
165-
* @return string
165+
* @return string
166166
*/
167167
public function getLastModifiedBy() {
168168
return $this->_lastModifiedBy;
@@ -171,8 +171,8 @@ public function getLastModifiedBy() {
171171
/**
172172
* Set Last Modified By
173173
*
174-
* @param string $pValue
175-
* @return PHPExcel_DocumentProperties
174+
* @param string $pValue
175+
* @return PHPExcel_DocumentProperties
176176
*/
177177
public function setLastModifiedBy($pValue = '') {
178178
$this->_lastModifiedBy = $pValue;
@@ -182,7 +182,7 @@ public function setLastModifiedBy($pValue = '') {
182182
/**
183183
* Get Created
184184
*
185-
* @return datetime
185+
* @return datetime
186186
*/
187187
public function getCreated() {
188188
return $this->_created;
@@ -191,8 +191,8 @@ public function getCreated() {
191191
/**
192192
* Set Created
193193
*
194-
* @param datetime $pValue
195-
* @return PHPExcel_DocumentProperties
194+
* @param datetime $pValue
195+
* @return PHPExcel_DocumentProperties
196196
*/
197197
public function setCreated($pValue = null) {
198198
if ($pValue === NULL) {
@@ -212,7 +212,7 @@ public function setCreated($pValue = null) {
212212
/**
213213
* Get Modified
214214
*
215-
* @return datetime
215+
* @return datetime
216216
*/
217217
public function getModified() {
218218
return $this->_modified;
@@ -221,8 +221,8 @@ public function getModified() {
221221
/**
222222
* Set Modified
223223
*
224-
* @param datetime $pValue
225-
* @return PHPExcel_DocumentProperties
224+
* @param datetime $pValue
225+
* @return PHPExcel_DocumentProperties
226226
*/
227227
public function setModified($pValue = null) {
228228
if ($pValue === NULL) {
@@ -242,7 +242,7 @@ public function setModified($pValue = null) {
242242
/**
243243
* Get Title
244244
*
245-
* @return string
245+
* @return string
246246
*/
247247
public function getTitle() {
248248
return $this->_title;
@@ -251,8 +251,8 @@ public function getTitle() {
251251
/**
252252
* Set Title
253253
*
254-
* @param string $pValue
255-
* @return PHPExcel_DocumentProperties
254+
* @param string $pValue
255+
* @return PHPExcel_DocumentProperties
256256
*/
257257
public function setTitle($pValue = '') {
258258
$this->_title = $pValue;
@@ -262,7 +262,7 @@ public function setTitle($pValue = '') {
262262
/**
263263
* Get Description
264264
*
265-
* @return string
265+
* @return string
266266
*/
267267
public function getDescription() {
268268
return $this->_description;
@@ -302,7 +302,7 @@ public function setSubject($pValue = '') {
302302
/**
303303
* Get Keywords
304304
*
305-
* @return string
305+
* @return string
306306
*/
307307
public function getKeywords() {
308308
return $this->_keywords;
@@ -311,8 +311,8 @@ public function getKeywords() {
311311
/**
312312
* Set Keywords
313313
*
314-
* @param string $pValue
315-
* @return PHPExcel_DocumentProperties
314+
* @param string $pValue
315+
* @return PHPExcel_DocumentProperties
316316
*/
317317
public function setKeywords($pValue = '') {
318318
$this->_keywords = $pValue;
@@ -322,7 +322,7 @@ public function setKeywords($pValue = '') {
322322
/**
323323
* Get Category
324324
*
325-
* @return string
325+
* @return string
326326
*/
327327
public function getCategory() {
328328
return $this->_category;
@@ -331,8 +331,8 @@ public function getCategory() {
331331
/**
332332
* Set Category
333333
*
334-
* @param string $pValue
335-
* @return PHPExcel_DocumentProperties
334+
* @param string $pValue
335+
* @return PHPExcel_DocumentProperties
336336
*/
337337
public function setCategory($pValue = '') {
338338
$this->_category = $pValue;
@@ -342,7 +342,7 @@ public function setCategory($pValue = '') {
342342
/**
343343
* Get Company
344344
*
345-
* @return string
345+
* @return string
346346
*/
347347
public function getCompany() {
348348
return $this->_company;
@@ -351,8 +351,8 @@ public function getCompany() {
351351
/**
352352
* Set Company
353353
*
354-
* @param string $pValue
355-
* @return PHPExcel_DocumentProperties
354+
* @param string $pValue
355+
* @return PHPExcel_DocumentProperties
356356
*/
357357
public function setCompany($pValue = '') {
358358
$this->_company = $pValue;
@@ -362,7 +362,7 @@ public function setCompany($pValue = '') {
362362
/**
363363
* Get Manager
364364
*
365-
* @return string
365+
* @return string
366366
*/
367367
public function getManager() {
368368
return $this->_manager;
@@ -371,8 +371,8 @@ public function getManager() {
371371
/**
372372
* Set Manager
373373
*
374-
* @param string $pValue
375-
* @return PHPExcel_DocumentProperties
374+
* @param string $pValue
375+
* @return PHPExcel_DocumentProperties
376376
*/
377377
public function setManager($pValue = '') {
378378
$this->_manager = $pValue;
@@ -382,7 +382,7 @@ public function setManager($pValue = '') {
382382
/**
383383
* Get a List of Custom Property Names
384384
*
385-
* @return array of string
385+
* @return array of string
386386
*/
387387
public function getCustomProperties() {
388388
return array_keys($this->_customProperties);
@@ -391,8 +391,8 @@ public function getCustomProperties() {
391391
/**
392392
* Check if a Custom Property is defined
393393
*
394-
* @param string $propertyName
395-
* @return boolean
394+
* @param string $propertyName
395+
* @return boolean
396396
*/
397397
public function isCustomPropertySet($propertyName) {
398398
return isset($this->_customProperties[$propertyName]);
@@ -401,8 +401,8 @@ public function isCustomPropertySet($propertyName) {
401401
/**
402402
* Get a Custom Property Value
403403
*
404-
* @param string $propertyName
405-
* @return string
404+
* @param string $propertyName
405+
* @return string
406406
*/
407407
public function getCustomPropertyValue($propertyName) {
408408
if (isset($this->_customProperties[$propertyName])) {
@@ -414,8 +414,8 @@ public function getCustomPropertyValue($propertyName) {
414414
/**
415415
* Get a Custom Property Type
416416
*
417-
* @param string $propertyName
418-
* @return string
417+
* @param string $propertyName
418+
* @return string
419419
*/
420420
public function getCustomPropertyType($propertyName) {
421421
if (isset($this->_customProperties[$propertyName])) {
@@ -427,15 +427,15 @@ public function getCustomPropertyType($propertyName) {
427427
/**
428428
* Set a Custom Property
429429
*
430-
* @param string $propertyName
431-
* @param mixed $propertyValue
432-
* @param string $propertyType
433-
* 'i' : Integer
434-
* 'f' : Floating Point
435-
* 's' : String
436-
* 'd' : Date/Time
437-
* 'b' : Boolean
438-
* @return PHPExcel_DocumentProperties
430+
* @param string $propertyName
431+
* @param mixed $propertyValue
432+
* @param string $propertyType
433+
* 'i' : Integer
434+
* 'f' : Floating Point
435+
* 's' : String
436+
* 'd' : Date/Time
437+
* 'b' : Boolean
438+
* @return PHPExcel_DocumentProperties
439439
*/
440440
public function setCustomProperty($propertyName,$propertyValue='',$propertyType=NULL) {
441441
if (($propertyType === NULL) || (!in_array($propertyType,array(self::PROPERTY_TYPE_INTEGER,

0 commit comments

Comments
 (0)