]> git.mxchange.org Git - friendica.git/commitdiff
Fix code standard
authorfabrixxm <fabrix.xm@gmail.com>
Fri, 20 Aug 2021 09:09:35 +0000 (11:09 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Fri, 20 Aug 2021 09:09:35 +0000 (11:09 +0200)
src/Model/Log/ParsedLogIterator.php
src/Util/ReversedFileReader.php

index 856edb38fd8be912e31067746153469151761c41..0228fcf0535155e8ae1cb2166e5d4f3b59f7f0a7 100644 (file)
@@ -156,7 +156,7 @@ class ParsedLogIterator implements \Iterator
        /**
         * Fetch next parsed log line which match with filters or search and
         * set it as current iterator value.
-        * 
+        *
         * @see Iterator::next()
         * @return void
         */
@@ -173,7 +173,7 @@ class ParsedLogIterator implements \Iterator
 
        /**
         * Rewind the iterator to the first matching log line
-        * 
+        *
         * @see Iterator::rewind()
         * @return void
         */
@@ -186,7 +186,7 @@ class ParsedLogIterator implements \Iterator
 
        /**
         * Return current parsed log line number
-        * 
+        *
         * @see Iterator::key()
         * @see ReversedFileReader::key()
         * @return int
@@ -198,7 +198,7 @@ class ParsedLogIterator implements \Iterator
 
        /**
         * Return current iterator value
-        * 
+        *
         * @see Iterator::current()
         * @return ?ParsedLogLing
         */
@@ -209,7 +209,7 @@ class ParsedLogIterator implements \Iterator
 
        /**
         * Checks if current iterator value is valid, that is, not null
-        * 
+        *
         * @see Iterator::valid()
         * @return bool
         */
index 248792f17aa81786f43bda72f9fa49adfce4f797..bdc31f0cba158f3b5f86796cd54ed8fb537f8d41 100644 (file)
@@ -72,7 +72,7 @@ class ReversedFileReader implements \Iterator
 
        /**
         * Read $size bytes behind last position
-        * 
+        *
         * @return string
         */
        private function _read($size)
@@ -85,7 +85,7 @@ class ReversedFileReader implements \Iterator
        /**
         * Read next line from end of file
         * Return null if no lines are left to read
-        * 
+        *
         * @return ?string
         */
        private function _readline()
@@ -104,7 +104,7 @@ class ReversedFileReader implements \Iterator
 
        /**
         * Fetch next line from end and set it as current iterator value.
-        * 
+        *
         * @see Iterator::next()
         * @return void
         */
@@ -116,9 +116,9 @@ class ReversedFileReader implements \Iterator
 
        /**
         * Rewind iterator to the first line at the end of file
-        * 
+        *
         * @see Iterator::rewind()
-        * @return void 
+        * @return void
         */
        public function rewind()
        {
@@ -133,7 +133,7 @@ class ReversedFileReader implements \Iterator
 
        /**
         * Return current line number, starting from zero at the end of file
-        * 
+        *
         * @see Iterator::key()
         * @return int
         */
@@ -144,7 +144,7 @@ class ReversedFileReader implements \Iterator
 
        /**
         * Return current line
-        * 
+        *
         * @see Iterator::current()
         * @return string
         */
@@ -155,7 +155,7 @@ class ReversedFileReader implements \Iterator
 
        /**
         * Checks if current iterator value is valid, that is, we readed all lines in files
-        * 
+        *
         * @see Iterator::valid()
         * @return bool
         */