| @@ -9,11 +9,11 @@ | ||
| 9 | 9 | */ | 
| 10 | 10 | class ODataLink | 
| 11 | 11 |  { | 
| 12 | - /** | |
| 13 | - * Name of the link. This becomes last segment of rel attribute value. | |
| 14 | - * | |
| 15 | - * @var string | |
| 16 | - */ | |
| 12 | + /** | |
| 13 | + * Name of the link. This becomes last segment of rel attribute value. | |
| 14 | + * | |
| 15 | + * @var string | |
| 16 | + */ | |
| 17 | 17 | private $name; | 
| 18 | 18 | /** | 
| 19 | 19 | * Title of the link. This become value of title attribute. | 
| @@ -142,7 +142,7 @@ discard block | ||
| 142 | 142 | $relativeUri = $this->getRequest()->getIdentifier(); | 
| 143 | 143 | $absoluteUri = $this->getRequest()->getRequestUrl()->getUrlAsString(); | 
| 144 | 144 | |
| 145 | -        $selfLink        = new ODataLink('self', $title, null, $relativeUri); | |
| 145 | +        $selfLink = new ODataLink('self', $title, null, $relativeUri); | |
| 146 | 146 | |
| 147 | 147 | $odata = new ODataFeed(); | 
| 148 | 148 | $odata->title = new ODataTitle($title); | 
| @@ -328,7 +328,7 @@ discard block | ||
| 328 | 328 | $propTail = ResourcePropertyKind::RESOURCE_REFERENCE() == $propKind ? 'entry' : 'feed'; | 
| 329 | 329 | $propType = 'application/atom+xml;type=' . $propTail; | 
| 330 | 330 | $propName = $prop->getName(); | 
| 331 | - $nuLink = new ODataLink( | |
| 331 | + $nuLink = new ODataLink( | |
| 332 | 332 | ODataConstants::ODATA_RELATED_NAMESPACE . $propName, | 
| 333 | 333 | $propName, | 
| 334 | 334 | $propType, | 
| @@ -356,7 +356,7 @@ discard block | ||
| 356 | 356 | $odata->type = new ODataCategory($type); | 
| 357 | 357 | $odata->propertyContent = $propertyContent; | 
| 358 | 358 | $odata->isMediaLinkEntry = true === $resourceType->isMediaLinkEntry() ? true : null; | 
| 359 | -        $odata->editLink         = new ODataLink('edit',$title, null, $relativeUri); | |
| 359 | +        $odata->editLink         = new ODataLink('edit', $title, null, $relativeUri); | |
| 360 | 360 | $odata->mediaLink = $mediaLink; | 
| 361 | 361 | $odata->mediaLinks = $mediaLinks; | 
| 362 | 362 | $odata->links = $links; | 
| @@ -743,7 +743,7 @@ discard block | ||
| 743 | 743 | return false; | 
| 744 | 744 | } | 
| 745 | 745 | |
| 746 | - return 0 == ($value % 4); | |
| 746 | + return 0 == ($value%4); | |
| 747 | 747 | } | 
| 748 | 748 | |
| 749 | 749 | /** | 
| @@ -873,7 +873,7 @@ discard block | ||
| 873 | 873 | ODataConstants::HTTPQUERY_STRING_EXPAND, | 
| 874 | 874 | ODataConstants::HTTPQUERY_STRING_ORDERBY, | 
| 875 | 875 | ODataConstants::HTTPQUERY_STRING_INLINECOUNT, | 
| 876 | -            ODataConstants::HTTPQUERY_STRING_SELECT,] as $queryOption) { | |
| 876 | +            ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) { | |
| 877 | 877 | $value = $this->getService()->getHost()->getQueryStringItem($queryOption); | 
| 878 | 878 |              if (null !== $value) { | 
| 879 | 879 |                  if (null !== $queryParameterString) { |