Skip to content

Commit 8075390

Browse files
committed
fix php cs
1 parent ba32c13 commit 8075390

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Type.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function alternateLocale(string $locale)
7777
*/
7878
public function image($image)
7979
{
80-
if($image instanceof Image) {
80+
if ($image instanceof Image) {
8181
$this->addStructuredProperty($image);
8282

8383
return $this;
@@ -94,7 +94,7 @@ public function image($image)
9494
*/
9595
public function video($video)
9696
{
97-
if($video instanceof Video) {
97+
if ($video instanceof Video) {
9898
$this->addStructuredProperty($video);
9999

100100
return $this;
@@ -111,7 +111,7 @@ public function video($video)
111111
*/
112112
public function audio($audio)
113113
{
114-
if($audio instanceof Audio) {
114+
if ($audio instanceof Audio) {
115115
$this->addStructuredProperty($audio);
116116

117117
return $this;

0 commit comments

Comments
 (0)