-
Notifications
You must be signed in to change notification settings - Fork 534
Fix PHP Docs #513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PHP Docs #513
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Wow ! Huge job. Thank you 🙏 !
Some fixes and I will merge it just after :)
@@ -2427,6 +2440,8 @@ private function readRecordPersistDirectoryAtom($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd904856(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -2450,6 +2465,8 @@ private function readRecordPerSlideHeadersFootersContainer($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd923930(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -2473,6 +2490,8 @@ private function readRecordPlaceholderAtom($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd904899(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -2496,6 +2515,8 @@ private function readRecordRecolorInfoAtom($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd910800(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -2519,6 +2540,8 @@ private function readRecordRoundTripHFPlaceholder12Atom($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd772926(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -2542,6 +2565,8 @@ private function readRecordRoundTripShapeId12Atom($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd923801(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -2565,6 +2590,8 @@ private function readRecordRoundTripSlideSyncInfo12Container($stream, $pos) | |||
* @param string $stream | |||
* @param integer $pos | |||
* @link https://msdn.microsoft.com/en-us/library/dd908949(v=office.12).aspx | |||
* @return array | |||
* @return array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Double "return array"
@@ -3061,6 +3100,9 @@ private function readStructureTextCFRun($stream, $pos, $strLenRT) | |||
* A structure that specifies the paragraph-level formatting of a run of text. | |||
* @param string $stream | |||
* @param integer $pos | |||
* @param $strLenRT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon string
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You want to say int ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Yes, sorry !
@@ -87,6 +87,7 @@ public function getExtension() | |||
/** | |||
* Get indexed filename (using image index) | |||
* | |||
* @param $numSlide |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon integer
Fix Typing
@Progi1984 //@var string
//public $relationId = null;
$objWriter->writeAttribute('r:embed', ($shape->relationId + 1)); String|null + a number seems strange |
@@ -3061,6 +3100,9 @@ private function readStructureTextCFRun($stream, $pos, $strLenRT) | |||
* A structure that specifies the paragraph-level formatting of a run of text. | |||
* @param string $stream | |||
* @param integer $pos | |||
* @param $strLenRT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tolbon Yes, sorry !
@tolbon Yes, i know it. It must be fixed in an another branch. Thanks |
Fix Some PHP Docs :