diff --git a/examples/tv/model/show.php b/examples/tv/model/show.php
index 0c6cb7c5..358ec687 100644
--- a/examples/tv/model/show.php
+++ b/examples/tv/model/show.php
@@ -22,4 +22,4 @@
$repository = new TvRepository($client);
$tvShow = $repository->load(1396);
-var_dump($tvShow);
+var_dump($tvShow->getLanguages());
diff --git a/test/Tmdb/Tests/Helper/ImageHelperTest.php b/test/Tmdb/Tests/Helper/ImageHelperTest.php
index ae8fd9ca..8e030caf 100644
--- a/test/Tmdb/Tests/Helper/ImageHelperTest.php
+++ b/test/Tmdb/Tests/Helper/ImageHelperTest.php
@@ -87,7 +87,7 @@ public function shouldConstructImageElement()
$image->setHeight(75);
$this->assertEquals(
- '',
+ '',
$this->helper->getHtml($image, 'w45', 90, 70)
);
}
@@ -105,7 +105,7 @@ public function shouldReadImageDimensions()
$image->setHeight(75);
$this->assertEquals(
- '',
+ '',
$this->helper->getHtml($image, 'w45')
);
}
@@ -123,12 +123,12 @@ public function shouldCalculateDimensions()
$image->setAspectRatio(1.25);
$this->assertEquals(
- '',
+ '',
$this->helper->getHtml($image, 'w45', null, 50)
);
$this->assertEquals(
- '',
+ '',
$this->helper->getHtml($image, 'w45', 63)
);
}
@@ -161,7 +161,7 @@ public function shouldGetImageElementByString()
$imageUrl = $this->helper->getHtml('/1NfhdnQAEqcBRCulEhOFSkRrrLv.jpg');
$this->assertEquals(
- '',
+ '',
$imageUrl
);
}