Home
last modified time | relevance | path

Searched refs:commentText (Results 1 – 3 of 3) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTube/
H A DSuperChatEventSnippet.php33 public $commentText; variable in Google\\Service\\YouTube\\SuperChatEventSnippet
90 public function setCommentText($commentText) argument
92 $this->commentText = $commentText;
99 return $this->commentText;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DBlockCommentSniff.php154 $commentText = str_replace($phpcsFile->eolChar, '', $commentString);
155 $commentText = trim($commentText, '/* ');
156 if ($commentText === '') {
177 $comment = '// '.$commentText.$phpcsFile->eolChar;
222 $commentText = ltrim($content);
223 $leadingSpace = (strlen($content) - strlen($commentText));
251 if (preg_match('/^\p{Ll}/u', $commentText) === 1) {
311 $commentText = ltrim($content);
312 $leadingSpace = (strlen($content) - strlen($commentText));
H A DInlineCommentSniff.php246 $commentText = '';
250 $commentText .= trim(substr($tokens[$i]['content'], 2));
254 if ($commentText === '') {
264 if (preg_match('/^\p{Ll}/u', $commentText) === 1) {
271 if (preg_match('/^\p{L}/u', $commentText) === 1) {
272 $commentCloser = $commentText[(strlen($commentText) - 1)];