Changeset 47808 for trunk/src/wp-includes/pomo/streams.php
- Timestamp:
- 05/16/2020 06:40:52 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/streams.php
r46632 r47808 55 55 return false; 56 56 } 57 $endian_letter = ( 'big' == $this->endian ) ? 'N' : 'V';57 $endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V'; 58 58 $int = unpack( $endian_letter, $bytes ); 59 59 return reset( $int ); … … 72 72 return false; 73 73 } 74 $endian_letter = ( 'big' == $this->endian ) ? 'N' : 'V';74 $endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V'; 75 75 return unpack( $endian_letter . $count, $bytes ); 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.