Fix typo in AP transformers

This commit is contained in:
Daniel Supernault 2019-09-05 19:58:38 -06:00
parent 130ef34a41
commit a30575e8d3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
'type' => 'Place',
'name' => $status->place->name,
'longitude' => $status->place->long,
'lattitude' => $status->place->lat,
'latitude' => $status->place->lat,
'country' => $status->place->country
] : null,
];

View File

@ -79,7 +79,7 @@ class CreateNote extends Fractal\TransformerAbstract
'type' => 'Place',
'name' => $status->place->name,
'longitude' => $status->place->long,
'lattitude' => $status->place->lat,
'latitude' => $status->place->lat,
'country' => $status->place->country
] : null,
]

View File

@ -72,7 +72,7 @@ class Note extends Fractal\TransformerAbstract
'type' => 'Place',
'name' => $status->place->name,
'longitude' => $status->place->long,
'lattitude' => $status->place->lat,
'latitude' => $status->place->lat,
'country' => $status->place->country
] : null,
];