@@ -56,7 +56,7 @@ |
||
| 56 | 56 | |
| 57 | 57 | public function scrape(Crawler $crawler) |
| 58 | 58 | { |
| 59 | - $texts = $crawler->filter('#accordion > *')->each(function (Crawler $node) { |
|
| 59 | + $texts = $crawler->filter('#accordion > *')->each(function(Crawler $node) { |
|
| 60 | 60 | return $node->text(); |
| 61 | 61 | }); |
| 62 | 62 | |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | public function scrape(Crawler $crawler) |
| 15 | 15 | { |
| 16 | - $texts = $crawler->filter('.productPageBody > p')->each(function (Crawler $node) { |
|
| 16 | + $texts = $crawler->filter('.productPageBody > p')->each(function(Crawler $node) { |
|
| 17 | 17 | return $node->text(); |
| 18 | 18 | }); |
| 19 | 19 | $text = implode('\n\n', $texts); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | public function scrape(Crawler $crawler) |
| 15 | 15 | { |
| 16 | - $texts = $crawler->filter('.book-details > div')->each(function (Crawler $node) { |
|
| 16 | + $texts = $crawler->filter('.book-details > div')->each(function(Crawler $node) { |
|
| 17 | 17 | if (strpos($node->attr('class'), 'row') === false) { |
| 18 | 18 | return $node->text(); |
| 19 | 19 | } |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | public function toArray() |
| 31 | 31 | { |
| 32 | - $body = $this->doc->bibliographic; // PHP makes a copy for us |
|
| 32 | + $body = $this->doc->bibliographic; // PHP makes a copy for us |
|
| 33 | 33 | |
| 34 | 34 | $body['id'] = $this->doc->id; |
| 35 | 35 | $body['bibsys_id'] = $this->doc->bibsys_id; |
@@ -10,12 +10,12 @@ discard block |
||
| 10 | 10 | 'AA' => 'audio', |
| 11 | 11 | 'AA BA' => 'audio book', |
| 12 | 12 | 'BA' => 'book', |
| 13 | - 'BA DA' => 'ebook', // Yes, we DO actually get these |
|
| 13 | + 'BA DA' => 'ebook', // Yes, we DO actually get these |
|
| 14 | 14 | 'BB' => 'hardcover', |
| 15 | - 'BB BC' => 'book', // ... and these |
|
| 16 | - 'BB DA' => 'ebook', // ... and these |
|
| 15 | + 'BB BC' => 'book', // ... and these |
|
| 16 | + 'BB DA' => 'ebook', // ... and these |
|
| 17 | 17 | 'BC' => 'paperback', |
| 18 | - 'BC DA' => 'ebook', // ... and these |
|
| 18 | + 'BC DA' => 'ebook', // ... and these |
|
| 19 | 19 | 'DA' => 'digital', |
| 20 | 20 | 'FA' => 'film/transp.', |
| 21 | 21 | 'MA' => 'microform', |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | if (isset($this->formats[$formStr])) { |
| 50 | 50 | return $this->formats[$formStr]; |
| 51 | 51 | } |
| 52 | - $formStr = implode(' ', array_map(function ($el) { |
|
| 52 | + $formStr = implode(' ', array_map(function($el) { |
|
| 53 | 53 | return $this->formats[$el]; |
| 54 | 54 | }, $forms)); |
| 55 | 55 | \Log::warning(sprintf('Unknown form: %s', $formStr)); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | //$docIndex->dropVersion(); |
| 41 | 41 | $oldVersion = $docIndex->getCurrentVersion(); |
| 42 | 42 | $newVersion = $oldVersion + 1; |
| 43 | - $this->comment(' Old version: ' . $oldVersion . ', new version: ' . $newVersion); |
|
| 43 | + $this->comment(' Old version: '.$oldVersion.', new version: '.$newVersion); |
|
| 44 | 44 | |
| 45 | 45 | if ($docIndex->versionExists($newVersion)) { |
| 46 | 46 | $this->comment(' New version already existed, probably from a crashed job. Removing.'); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | $docCount = Document::count(); |
| 59 | 59 | $this->output->progressStart($docCount); |
| 60 | 60 | |
| 61 | - Document::with('subjects', 'genres', 'cover')->chunk(1000, function ($docs) use ($docIndex, $newVersion) { |
|
| 61 | + Document::with('subjects', 'genres', 'cover')->chunk(1000, function($docs) use ($docIndex, $newVersion) { |
|
| 62 | 62 | foreach ($docs as $doc) { |
| 63 | 63 | $docIndex->index($doc, $newVersion); |
| 64 | 64 | $this->output->progressAdvance(); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $docIndex->dropVersion($oldVersion); |
| 74 | 74 | |
| 75 | 75 | $dt = microtime(true) - $t0; |
| 76 | - $this->info(' Completed in ' . round($dt) . ' seconds.'); |
|
| 77 | - \Log::info('[ReindexJob] Completed in ' . round($dt) . ' seconds.'); |
|
| 76 | + $this->info(' Completed in '.round($dt).' seconds.'); |
|
| 77 | + \Log::info('[ReindexJob] Completed in '.round($dt).' seconds.'); |
|
| 78 | 78 | } |
| 79 | 79 | } |
@@ -85,13 +85,13 @@ discard block |
||
| 85 | 85 | $field = 'genres'; |
| 86 | 86 | $entity = Genre::where('term', '=', $labels['nb'])->where('vocabulary', '=', 'noubomn')->first(); |
| 87 | 87 | if (is_null($entity)) { |
| 88 | - $this->error('[ImportOntosaur] Entity not found: "' . $labels['nb'] . '"'); |
|
| 88 | + $this->error('[ImportOntosaur] Entity not found: "'.$labels['nb'].'"'); |
|
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | if (!is_null($entity)) { |
| 92 | 92 | $node['local_id'] = $entity->id; |
| 93 | 93 | $node['documents'] = action('DocumentsController@index', [ |
| 94 | - 'q' => $field . '.noubomn.id:' . $entity->id, |
|
| 94 | + 'q' => $field.'.noubomn.id:'.$entity->id, |
|
| 95 | 95 | ]); |
| 96 | 96 | // Can be used e.g. to determine bubble size in a visualization |
| 97 | 97 | $node['document_count'] = $entity->documents()->count(); |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | if (count($topNodes) != 1) { |
| 148 | - throw new \Exception('Found ' . count($topNodes) . ' topnodes rather than 1: ' . implode(', ', $topNodes)); |
|
| 148 | + throw new \Exception('Found '.count($topNodes).' topnodes rather than 1: '.implode(', ', $topNodes)); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | return [$nodes, $links, $topNodes[0]]; |
@@ -167,6 +167,6 @@ discard block |
||
| 167 | 167 | $saur->links = $links; |
| 168 | 168 | $saur->topnode = $topnode; |
| 169 | 169 | $saur->save(); |
| 170 | - $this->info('[ImportOntosaur] Completed. Have ' . count($nodes) . ' nodes, ' . count($links) . ' links.'); |
|
| 170 | + $this->info('[ImportOntosaur] Completed. Have '.count($nodes).' nodes, '.count($links).' links.'); |
|
| 171 | 171 | } |
| 172 | 172 | } |
@@ -49,8 +49,8 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | public function handleDocuments(XisbnClient $client, $docs) |
| 51 | 51 | { |
| 52 | - $this->info('Will check ' . count($docs) . ' documents'); |
|
| 53 | - Log::info('[HarvestXisbnJob] Starting job. ' . count($docs) . ' documents to be checked.'); |
|
| 52 | + $this->info('Will check '.count($docs).' documents'); |
|
| 53 | + Log::info('[HarvestXisbnJob] Starting job. '.count($docs).' documents to be checked.'); |
|
| 54 | 54 | |
| 55 | 55 | $this->output->progressStart(count($docs)); |
| 56 | 56 | foreach ($docs as $doc) { |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $this->warnings[] = 'Offset cannot be negative.'; |
| 26 | 26 | } elseif ($input['offset'] > $maxPaginationDepth) { |
| 27 | 27 | $input['offset'] = $maxPaginationDepth; |
| 28 | - $this->warnings[] = 'Pagination depth is limited to ' . $maxPaginationDepth . ' results.'; |
|
| 28 | + $this->warnings[] = 'Pagination depth is limited to '.$maxPaginationDepth.' results.'; |
|
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | $this->warnings[] = 'Limit cannot be negative.'; |
| 37 | 37 | } elseif ($input['limit'] > $maxResultsPerRequest) { |
| 38 | 38 | $input['limit'] = $maxResultsPerRequest; |
| 39 | - $this->warnings[] = 'Limiting to max ' . $maxResultsPerRequest . ' results per request.'; |
|
| 39 | + $this->warnings[] = 'Limiting to max '.$maxResultsPerRequest.' results per request.'; |
|
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | |