Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — 2.x (#526)
by Sebastian
05:03
created
common/class.tx_dlf_document.php 1 patch
Upper-Lower-Casing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @var	boolean
53 53
      * @access protected
54 54
      */
55
-    protected $dmdSecLoaded = FALSE;
55
+    protected $dmdSecLoaded = false;
56 56
 
57 57
     /**
58 58
      * The extension key
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @var	boolean
79 79
      * @access protected
80 80
      */
81
-    protected $fileGrpsLoaded = FALSE;
81
+    protected $fileGrpsLoaded = false;
82 82
 
83 83
     /**
84 84
      * This holds the configuration for all supported metadata encodings
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * @var	boolean
110 110
      * @access protected
111 111
      */
112
-    protected $formatsLoaded = FALSE;
112
+    protected $formatsLoaded = false;
113 113
 
114 114
     /**
115 115
      * Are there any fulltext files available?
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @var boolean
118 118
      * @access protected
119 119
      */
120
-    protected $hasFulltext = FALSE;
120
+    protected $hasFulltext = false;
121 121
 
122 122
     /**
123 123
      * Mimetype of fulltext application/tei+xml or text/xml?
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      * @var	array
134 134
      * @access protected
135 135
      */
136
-    protected $lastSearchedPhysicalPage = array ('logicalPage' => NULL, 'physicalPage' => NULL);
136
+    protected $lastSearchedPhysicalPage = array ('logicalPage' => null, 'physicalPage' => null);
137 137
 
138 138
     /**
139 139
      * This holds the documents location
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      * @var	boolean
167 167
      * @access protected
168 168
      */
169
-    protected $metadataArrayLoaded = FALSE;
169
+    protected $metadataArrayLoaded = false;
170 170
 
171 171
     /**
172 172
      * This holds the XML file's METS part as SimpleXMLElement object
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
      * @var	boolean
216 216
      * @access protected
217 217
      */
218
-    protected $physicalStructureLoaded = FALSE;
218
+    protected $physicalStructureLoaded = false;
219 219
 
220 220
     /**
221 221
      * This holds the PID of the document or zero if not in database
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      * @var	boolean
240 240
      * @access protected
241 241
      */
242
-    protected $ready = FALSE;
242
+    protected $ready = false;
243 243
 
244 244
     /**
245 245
      * The METS file's record identifier
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
      * @var	boolean
273 273
      * @access protected
274 274
      */
275
-    protected $rootIdLoaded = FALSE;
275
+    protected $rootIdLoaded = false;
276 276
 
277 277
     /**
278 278
      * This holds the smLinks between logical and physical structMap
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
      * @var	boolean
290 290
      * @access protected
291 291
      */
292
-    protected $smLinksLoaded = FALSE;
292
+    protected $smLinksLoaded = false;
293 293
 
294 294
     /**
295 295
      * This holds the logical structure
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      * @var	boolean
307 307
      * @access protected
308 308
      */
309
-    protected $tableOfContentsLoaded = FALSE;
309
+    protected $tableOfContentsLoaded = false;
310 310
 
311 311
     /**
312 312
      * This holds the document's thumbnail location.
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
      * @var	boolean
324 324
      * @access protected
325 325
      */
326
-    protected $thumbnailLoaded = FALSE;
326
+    protected $thumbnailLoaded = false;
327 327
 
328 328
     /**
329 329
      * This holds the toplevel structure's @ID
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
      *
455 455
      * @return	&tx_dlf_document		Instance of this class
456 456
      */
457
-    public static function &getInstance($uid, $pid = 0, $forceReload = FALSE) {
457
+    public static function &getInstance($uid, $pid = 0, $forceReload = false) {
458 458
 
459 459
         // Sanitize input.
460 460
         $pid = max(intval($pid), 0);
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
      *
538 538
      * @return	array		Array of the element's id, label, type and physical page indexes/mptr link
539 539
      */
540
-    public function getLogicalStructure($id, $recursive = FALSE) {
540
+    public function getLogicalStructure($id, $recursive = false) {
541 541
 
542 542
         $details = array ();
543 543
 
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
                 // Walk the logical structure recursively and fill the whole table of contents.
572 572
                 foreach ($divs as $div) {
573 573
 
574
-                    $this->tableOfContents[] = $this->getLogicalStructureInfo($div, TRUE);
574
+                    $this->tableOfContents[] = $this->getLogicalStructureInfo($div, true);
575 575
 
576 576
                 }
577 577
 
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
      *
594 594
      * @return	array		Array of the element's id, label, type and physical page indexes/mptr link
595 595
      */
596
-    protected function getLogicalStructureInfo(SimpleXMLElement $structure, $recursive = FALSE) {
596
+    protected function getLogicalStructureInfo(SimpleXMLElement $structure, $recursive = false) {
597 597
 
598 598
         // Get attributes.
599 599
         foreach ($structure->attributes() as $attribute => $value) {
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
         // Are there any physical elements and is this logical unit linked to at least one of them?
660 660
         } elseif (!empty($this->physicalStructure) && array_key_exists($details['id'], $this->smLinks['l2p'])) {
661 661
 
662
-            $details['points'] = max(intval(array_search($this->smLinks['l2p'][$details['id']][0], $this->physicalStructure, TRUE)), 1);
662
+            $details['points'] = max(intval(array_search($this->smLinks['l2p'][$details['id']][0], $this->physicalStructure, true)), 1);
663 663
 
664 664
             if (!empty($this->physicalStructureInfo[$this->smLinks['l2p'][$details['id']][0]]['files'][$extConf['fileGrpThumbs']])) {
665 665
 
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
             foreach ($structure->children('http://www.loc.gov/METS/')->div as $child) {
713 713
 
714 714
                 // Repeat for all children.
715
-                $details['children'][] = $this->getLogicalStructureInfo($child, TRUE);
715
+                $details['children'][] = $this->getLogicalStructureInfo($child, true);
716 716
 
717 717
             }
718 718
 
@@ -861,7 +861,7 @@  discard block
 block discarded – undo
861 861
             $result = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
862 862
                 'tx_dlf_metadata.index_name AS index_name,tx_dlf_metadataformat.xpath AS xpath,tx_dlf_metadataformat.xpath_sorting AS xpath_sorting,tx_dlf_metadata.is_sortable AS is_sortable,tx_dlf_metadata.default_value AS default_value,tx_dlf_metadata.format AS format',
863 863
                 'tx_dlf_metadata,tx_dlf_metadataformat,tx_dlf_formats',
864
-                'tx_dlf_metadata.pid='.$cPid.' AND tx_dlf_metadataformat.pid='.$cPid.' AND ((tx_dlf_metadata.uid=tx_dlf_metadataformat.parent_id AND tx_dlf_metadataformat.encoded=tx_dlf_formats.uid AND tx_dlf_formats.type='.$GLOBALS['TYPO3_DB']->fullQuoteStr($this->dmdSec[$dmdId]['type'], 'tx_dlf_formats').') OR tx_dlf_metadata.format=0)'.tx_dlf_helper::whereClause('tx_dlf_metadata', TRUE).tx_dlf_helper::whereClause('tx_dlf_metadataformat').tx_dlf_helper::whereClause('tx_dlf_formats'),
864
+                'tx_dlf_metadata.pid='.$cPid.' AND tx_dlf_metadataformat.pid='.$cPid.' AND ((tx_dlf_metadata.uid=tx_dlf_metadataformat.parent_id AND tx_dlf_metadataformat.encoded=tx_dlf_formats.uid AND tx_dlf_formats.type='.$GLOBALS['TYPO3_DB']->fullQuoteStr($this->dmdSec[$dmdId]['type'], 'tx_dlf_formats').') OR tx_dlf_metadata.format=0)'.tx_dlf_helper::whereClause('tx_dlf_metadata', true).tx_dlf_helper::whereClause('tx_dlf_metadataformat').tx_dlf_helper::whereClause('tx_dlf_formats'),
865 865
                 '',
866 866
                 '',
867 867
                 ''
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
 
1003 1003
             foreach ($this->physicalStructureInfo as $page) {
1004 1004
 
1005
-                if (strpos($page['orderlabel'], $logicalPage) !== FALSE) {
1005
+                if (strpos($page['orderlabel'], $logicalPage) !== false) {
1006 1006
 
1007 1007
                     $this->lastSearchedPhysicalPage['logicalPage'] = $logicalPage;
1008 1008
                     $this->lastSearchedPhysicalPage['physicalPage'] = $physicalPage;
@@ -1061,10 +1061,10 @@  discard block
 block discarded – undo
1061 1061
                 $file = $this->getFileLocation($this->physicalStructureInfo[$id]['files'][$extConf['fileGrpFulltext']]);
1062 1062
 
1063 1063
                 // Turn off libxml's error logging.
1064
-                $libxmlErrors = libxml_use_internal_errors(TRUE);
1064
+                $libxmlErrors = libxml_use_internal_errors(true);
1065 1065
 
1066 1066
                 // Disables the functionality to allow external entities to be loaded when parsing the XML, must be kept.
1067
-                $previousValueOfEntityLoader = libxml_disable_entity_loader(TRUE);
1067
+                $previousValueOfEntityLoader = libxml_disable_entity_loader(true);
1068 1068
 
1069 1069
                 // Load XML from file.
1070 1070
                 $rawTextXml = simplexml_load_string(\TYPO3\CMS\Core\Utility\GeneralUtility::getUrl($file));
@@ -1142,7 +1142,7 @@  discard block
 block discarded – undo
1142 1142
      *
1143 1143
      * @return	string		The title of the document itself or a parent document
1144 1144
      */
1145
-    public static function getTitle($uid, $recursive = FALSE) {
1145
+    public static function getTitle($uid, $recursive = false) {
1146 1146
 
1147 1147
         // Save parameter for logging purposes.
1148 1148
         $_uid = $uid;
@@ -1171,7 +1171,7 @@  discard block
 block discarded – undo
1171 1171
                 // Search parent documents recursively for a title?
1172 1172
                 if ($recursive && empty($title) && intval($partof) && $partof != $uid) {
1173 1173
 
1174
-                    $title = self::getTitle($partof, TRUE);
1174
+                    $title = self::getTitle($partof, true);
1175 1175
 
1176 1176
                 }
1177 1177
 
@@ -1288,10 +1288,10 @@  discard block
 block discarded – undo
1288 1288
             }
1289 1289
 
1290 1290
             // Turn off libxml's error logging.
1291
-            $libxmlErrors = libxml_use_internal_errors(TRUE);
1291
+            $libxmlErrors = libxml_use_internal_errors(true);
1292 1292
 
1293 1293
             // Disables the functionality to allow external entities to be loaded when parsing the XML, must be kept
1294
-            $previousValueOfEntityLoader = libxml_disable_entity_loader(TRUE);
1294
+            $previousValueOfEntityLoader = libxml_disable_entity_loader(true);
1295 1295
 
1296 1296
             // Load XML from file.
1297 1297
             $xml = simplexml_load_string(\TYPO3\CMS\Core\Utility\GeneralUtility::getUrl($location));
@@ -1303,11 +1303,11 @@  discard block
 block discarded – undo
1303 1303
             libxml_use_internal_errors($libxmlErrors);
1304 1304
 
1305 1305
             // Set some basic properties.
1306
-            if ($xml !== FALSE) {
1306
+            if ($xml !== false) {
1307 1307
 
1308 1308
                 $this->xml = $xml;
1309 1309
 
1310
-                return TRUE;
1310
+                return true;
1311 1311
 
1312 1312
             } else {
1313 1313
 
@@ -1329,7 +1329,7 @@  discard block
 block discarded – undo
1329 1329
 
1330 1330
         }
1331 1331
 
1332
-        return FALSE;
1332
+        return false;
1333 1333
 
1334 1334
     }
1335 1335
 
@@ -1365,7 +1365,7 @@  discard block
 block discarded – undo
1365 1365
 
1366 1366
             }
1367 1367
 
1368
-            $this->formatsLoaded = TRUE;
1368
+            $this->formatsLoaded = true;
1369 1369
 
1370 1370
         }
1371 1371
 
@@ -1439,7 +1439,7 @@  discard block
 block discarded – undo
1439 1439
 
1440 1440
             }
1441 1441
 
1442
-            return FALSE;
1442
+            return false;
1443 1443
 
1444 1444
         }
1445 1445
 
@@ -1463,7 +1463,7 @@  discard block
 block discarded – undo
1463 1463
 
1464 1464
             }
1465 1465
 
1466
-            return FALSE;
1466
+            return false;
1467 1467
 
1468 1468
         }
1469 1469
 
@@ -1489,7 +1489,7 @@  discard block
 block discarded – undo
1489 1489
 
1490 1490
             }
1491 1491
 
1492
-            return FALSE;
1492
+            return false;
1493 1493
 
1494 1494
         }
1495 1495
 
@@ -1514,7 +1514,7 @@  discard block
 block discarded – undo
1514 1514
 
1515 1515
             }
1516 1516
 
1517
-            return FALSE;
1517
+            return false;
1518 1518
 
1519 1519
         }
1520 1520
 
@@ -1540,7 +1540,7 @@  discard block
 block discarded – undo
1540 1540
 
1541 1541
             }
1542 1542
 
1543
-            return FALSE;
1543
+            return false;
1544 1544
 
1545 1545
         }
1546 1546
 
@@ -1606,9 +1606,9 @@  discard block
 block discarded – undo
1606 1606
                     $message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
1607 1607
                         'TYPO3\\CMS\\Core\\Messaging\\FlashMessage',
1608 1608
                         htmlspecialchars(sprintf(tx_dlf_helper::getLL('flash.newCollection'), $collection, $substUid[$collNewUid])),
1609
-                        tx_dlf_helper::getLL('flash.attention', TRUE),
1609
+                        tx_dlf_helper::getLL('flash.attention', true),
1610 1610
                         \TYPO3\CMS\Core\Messaging\FlashMessage::INFO,
1611
-                        TRUE
1611
+                        true
1612 1612
                     );
1613 1613
 
1614 1614
                     tx_dlf_helper::addMessage($message);
@@ -1667,9 +1667,9 @@  discard block
 block discarded – undo
1667 1667
                 $message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
1668 1668
                     'TYPO3\\CMS\\Core\\Messaging\\FlashMessage',
1669 1669
                     htmlspecialchars(sprintf(tx_dlf_helper::getLL('flash.newLibrary'), $owner, $ownerUid)),
1670
-                    tx_dlf_helper::getLL('flash.attention', TRUE),
1670
+                    tx_dlf_helper::getLL('flash.attention', true),
1671 1671
                     \TYPO3\CMS\Core\Messaging\FlashMessage::INFO,
1672
-                    TRUE
1672
+                    true
1673 1673
                 );
1674 1674
 
1675 1675
                 tx_dlf_helper::addMessage($message);
@@ -1796,7 +1796,7 @@  discard block
 block discarded – undo
1796 1796
             'author' => implode('; ', $metadata['author']),
1797 1797
             'year' => implode('; ', $metadata['year']),
1798 1798
             'place' => implode('; ', $metadata['place']),
1799
-            'thumbnail' => $this->_getThumbnail(TRUE),
1799
+            'thumbnail' => $this->_getThumbnail(true),
1800 1800
             'metadata' => serialize($listed),
1801 1801
             'metadata_sorting' => serialize($sortable),
1802 1802
             'structure' => $metadata['type'][0],
@@ -1837,9 +1837,9 @@  discard block
 block discarded – undo
1837 1837
             $message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
1838 1838
                 'TYPO3\\CMS\\Core\\Messaging\\FlashMessage',
1839 1839
                 htmlspecialchars(sprintf(tx_dlf_helper::getLL('flash.documentSaved'), $metadata['title'][0], $this->uid)),
1840
-                tx_dlf_helper::getLL('flash.done', TRUE),
1840
+                tx_dlf_helper::getLL('flash.done', true),
1841 1841
                 \TYPO3\CMS\Core\Messaging\FlashMessage::OK,
1842
-                TRUE
1842
+                true
1843 1843
             );
1844 1844
 
1845 1845
             tx_dlf_helper::addMessage($message);
@@ -1861,7 +1861,7 @@  discard block
 block discarded – undo
1861 1861
 
1862 1862
         }
1863 1863
 
1864
-        return TRUE;
1864
+        return true;
1865 1865
 
1866 1866
     }
1867 1867
 
@@ -1931,7 +1931,7 @@  discard block
 block discarded – undo
1931 1931
 
1932 1932
             }
1933 1933
 
1934
-            $this->dmdSecLoaded = TRUE;
1934
+            $this->dmdSecLoaded = true;
1935 1935
 
1936 1936
         }
1937 1937
 
@@ -2002,11 +2002,11 @@  discard block
 block discarded – undo
2002 2002
 
2003 2003
                 $fft = $this->mets->xpath("./mets:fileSec/mets:fileGrp[@USE='FULLTEXT']/mets:file[1]");
2004 2004
                 $this->mimetypeFulltext = $fft[0]->attributes()->MIMETYPE;
2005
-                $this->hasFulltext = TRUE;
2005
+                $this->hasFulltext = true;
2006 2006
 
2007 2007
             }
2008 2008
 
2009
-            $this->fileGrpsLoaded = TRUE;
2009
+            $this->fileGrpsLoaded = true;
2010 2010
 
2011 2011
         }
2012 2012
 
@@ -2087,7 +2087,7 @@  discard block
 block discarded – undo
2087 2087
             // Set current PID for metadata definitions.
2088 2088
             $this->metadataArray[0] = $cPid;
2089 2089
 
2090
-            $this->metadataArrayLoaded = TRUE;
2090
+            $this->metadataArrayLoaded = true;
2091 2091
 
2092 2092
         }
2093 2093
 
@@ -2233,7 +2233,7 @@  discard block
 block discarded – undo
2233 2233
 
2234 2234
             }
2235 2235
 
2236
-            $this->physicalStructureLoaded = TRUE;
2236
+            $this->physicalStructureLoaded = true;
2237 2237
 
2238 2238
         }
2239 2239
 
@@ -2320,7 +2320,7 @@  discard block
 block discarded – undo
2320 2320
 
2321 2321
             }
2322 2322
 
2323
-            $this->rootIdLoaded = TRUE;
2323
+            $this->rootIdLoaded = true;
2324 2324
 
2325 2325
         }
2326 2326
 
@@ -2349,7 +2349,7 @@  discard block
 block discarded – undo
2349 2349
 
2350 2350
             }
2351 2351
 
2352
-            $this->smLinksLoaded = TRUE;
2352
+            $this->smLinksLoaded = true;
2353 2353
 
2354 2354
         }
2355 2355
 
@@ -2370,9 +2370,9 @@  discard block
 block discarded – undo
2370 2370
         if (!$this->tableOfContentsLoaded) {
2371 2371
 
2372 2372
             // Get all logical structures.
2373
-            $this->getLogicalStructure('', TRUE);
2373
+            $this->getLogicalStructure('', true);
2374 2374
 
2375
-            $this->tableOfContentsLoaded = TRUE;
2375
+            $this->tableOfContentsLoaded = true;
2376 2376
 
2377 2377
         }
2378 2378
 
@@ -2389,7 +2389,7 @@  discard block
 block discarded – undo
2389 2389
      *
2390 2390
      * @return	string		The document's thumbnail location
2391 2391
      */
2392
-    protected function _getThumbnail($forceReload = FALSE) {
2392
+    protected function _getThumbnail($forceReload = false) {
2393 2393
 
2394 2394
         if (!$this->thumbnailLoaded || $forceReload) {
2395 2395
 
@@ -2404,7 +2404,7 @@  discard block
 block discarded – undo
2404 2404
 
2405 2405
                 }
2406 2406
 
2407
-                $this->thumbnailLoaded = TRUE;
2407
+                $this->thumbnailLoaded = true;
2408 2408
 
2409 2409
                 return $this->thumbnail;
2410 2410
 
@@ -2421,7 +2421,7 @@  discard block
 block discarded – undo
2421 2421
 
2422 2422
                 }
2423 2423
 
2424
-                $this->thumbnailLoaded = TRUE;
2424
+                $this->thumbnailLoaded = true;
2425 2425
 
2426 2426
                 return $this->thumbnail;
2427 2427
 
@@ -2481,7 +2481,7 @@  discard block
 block discarded – undo
2481 2481
 
2482 2482
             }
2483 2483
 
2484
-            $this->thumbnailLoaded = TRUE;
2484
+            $this->thumbnailLoaded = true;
2485 2485
 
2486 2486
         }
2487 2487
 
@@ -2599,7 +2599,7 @@  discard block
 block discarded – undo
2599 2599
                 // Initialize core METS object.
2600 2600
                 $this->init();
2601 2601
 
2602
-                if ($this->mets !== NULL) {
2602
+                if ($this->mets !== null) {
2603 2603
 
2604 2604
                     // Cast to string for safety reasons.
2605 2605
                     $location = (string) $uid;
@@ -2674,10 +2674,10 @@  discard block
 block discarded – undo
2674 2674
 
2675 2675
             list ($this->uid, $this->pid, $this->recordId, $this->parentId, $this->thumbnail, $this->location) = $GLOBALS['TYPO3_DB']->sql_fetch_row($result);
2676 2676
 
2677
-            $this->thumbnailLoaded = TRUE;
2677
+            $this->thumbnailLoaded = true;
2678 2678
 
2679 2679
             // Load XML file if necessary...
2680
-            if ($this->mets === NULL && $this->load($this->location)) {
2680
+            if ($this->mets === null && $this->load($this->location)) {
2681 2681
 
2682 2682
                 // ...and set some basic properties.
2683 2683
                 $this->init();
@@ -2685,7 +2685,7 @@  discard block
 block discarded – undo
2685 2685
             }
2686 2686
 
2687 2687
             // Do we have a METS object now?
2688
-            if ($this->mets !== NULL) {
2688
+            if ($this->mets !== null) {
2689 2689
 
2690 2690
                 // Set new location if necessary.
2691 2691
                 if (!empty($location)) {
@@ -2695,11 +2695,11 @@  discard block
 block discarded – undo
2695 2695
                 }
2696 2696
 
2697 2697
                 // Document ready!
2698
-                $this->ready = TRUE;
2698
+                $this->ready = true;
2699 2699
 
2700 2700
             }
2701 2701
 
2702
-        } elseif ($this->mets !== NULL) {
2702
+        } elseif ($this->mets !== null) {
2703 2703
 
2704 2704
             // Set location as UID for documents not in database.
2705 2705
             $this->uid = $location;
@@ -2707,7 +2707,7 @@  discard block
 block discarded – undo
2707 2707
             $this->location = $location;
2708 2708
 
2709 2709
             // Document ready!
2710
-            $this->ready = TRUE;
2710
+            $this->ready = true;
2711 2711
 
2712 2712
         } else {
2713 2713
 
@@ -2810,9 +2810,9 @@  discard block
 block discarded – undo
2810 2810
 
2811 2811
         $xml = new DOMDocument('1.0', 'utf-8');
2812 2812
 
2813
-        $xml->appendChild($xml->importNode(dom_import_simplexml($this->mets), TRUE));
2813
+        $xml->appendChild($xml->importNode(dom_import_simplexml($this->mets), true));
2814 2814
 
2815
-        $xml->formatOutput = TRUE;
2815
+        $xml->formatOutput = true;
2816 2816
 
2817 2817
         return $xml->saveXML();
2818 2818
 
@@ -2829,7 +2829,7 @@  discard block
 block discarded – undo
2829 2829
     public function __wakeup() {
2830 2830
 
2831 2831
         // Turn off libxml's error logging.
2832
-        $libxmlErrors = libxml_use_internal_errors(TRUE);
2832
+        $libxmlErrors = libxml_use_internal_errors(true);
2833 2833
 
2834 2834
         // Reload XML from string.
2835 2835
         $xml = @simplexml_load_string($this->asXML);
@@ -2837,7 +2837,7 @@  discard block
 block discarded – undo
2837 2837
         // Reset libxml's error logging.
2838 2838
         libxml_use_internal_errors($libxmlErrors);
2839 2839
 
2840
-        if ($xml !== FALSE) {
2840
+        if ($xml !== false) {
2841 2841
 
2842 2842
             $this->asXML = '';
2843 2843
 
Please login to merge, or discard this patch.