From 25b71e9853f84a921fb478104969aca43e29d32f Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 27 May 2019 09:50:26 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- Blacklight/processing/adult/Hotmovies.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Blacklight/processing/adult/Hotmovies.php b/Blacklight/processing/adult/Hotmovies.php index 4f6b3495f..3076784d4 100755 --- a/Blacklight/processing/adult/Hotmovies.php +++ b/Blacklight/processing/adult/Hotmovies.php @@ -105,7 +105,7 @@ class Hotmovies extends AdultMovies { $studio = false; $director = false; - if (($ret = $this->_html->find('div.page_video_info')) && !empty($ret->find('text'))) { + if (($ret = $this->_html->find('div.page_video_info')) && ! empty($ret->find('text'))) { foreach ($ret->find('text') as $e) { $e = trim($e->plaintext); $rArray = [',', '...', ' :']; @@ -119,12 +119,12 @@ class Hotmovies extends AdultMovies } if ($studio === true) { if ((stripos($e, 'Custodian of Records') === false) && stripos($e, 'Description') === false) { - if ($director === true && !empty($e)) { + if ($director === true && ! empty($e)) { $this->_res['director'] = $e; $e = null; $director = false; } - if (!empty($e)) { + if (! empty($e)) { $this->_res['productinfo'][] = $e; } } else {