Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
CS fixes per phpcs
  • Loading branch information
weierophinney committed May 7, 2018
commit 8c82e0ddc4ea77c06ad0f42ee4473aaff69f5f6c
2 changes: 1 addition & 1 deletion src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ private function getFieldProperties(Field $field)
if ($type === self::ARRAY_TYPE) {
$properties['items'] = ['type' => self::DEFAULT_TYPE];
}
$properties['description'] =$field->getDescription();
$properties['description'] = $field->getDescription();
return $this->cleanEmptyValues($properties);
}

Expand Down