Skip to content

Commit

Permalink
another CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k00ni committed Feb 13, 2024
1 parent 7ea1e8a commit 674efc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/basic_sparql.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
<?php
$result = $sparql->query(
'SELECT * WHERE {'.
' ?country rdf:type dbo:Country .'.
' ?country rdfs:label ?label .'.
' FILTER ( lang(?label) = "en" )'.
'} ORDER BY ?label LIMIT 10'
' ?country rdf:type dbo:Country .'.
' ?country rdfs:label ?label .'.
' FILTER ( lang(?label) = "en" )'.
'} ORDER BY ?label LIMIT 10'
);
foreach ($result as $row) {
echo '<li>'.link_to($row->label, $row->country)."</li>\n";
Expand Down

0 comments on commit 674efc5

Please sign in to comment.