Skip to content

Commit c1e6af4

Browse files
authored
Merge pull request #32 from daniellienert/task/fix-comments-and
TASK: Fix comments and license headers
2 parents 82b74fa + a588af3 commit c1e6af4

10 files changed

Lines changed: 92 additions & 8 deletions

Classes/AbstractIndexingJob.php

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Indexer\NodeIndexer;
515
use Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Domain\Repository\NodeDataRepository;
616
use Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Domain\Service\FakeNodeDataFactory;
@@ -10,9 +20,6 @@
1020
use Neos\Flow\Annotations as Flow;
1121
use Neos\Flow\Utility\Algorithms;
1222

13-
/**
14-
* Elasticsearch Node Abstract Job
15-
*/
1623
abstract class AbstractIndexingJob implements JobInterface
1724
{
1825
use LoggerTrait;

Classes/Command/NodeIndexQueueCommandController.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Command;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Driver\NodeTypeMappingBuilderInterface;
515
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Indexer\NodeIndexer;
616
use Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Domain\Repository\NodeDataRepository;

Classes/Domain/Repository/NodeDataRepository.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Domain\Repository;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Doctrine\Common\Persistence\ObjectManager;
515
use Doctrine\ORM\Internal\Hydration\IterableResult;
616
use Doctrine\ORM\QueryBuilder;

Classes/Domain/Service/FakeNodeDataFactory.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Domain\Service;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Exception;
515
use Neos\ContentRepository\Domain\Model\NodeData;
616
use Neos\ContentRepository\Domain\Repository\WorkspaceRepository;

Classes/Indexer/NodeIndexer.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Indexer;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\ElasticSearch\ContentRepositoryAdaptor;
515
use Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\Command\NodeIndexQueueCommandController;
616
use Flowpack\ElasticSearch\ContentRepositoryQueueIndexer\IndexingJob;
@@ -11,7 +21,7 @@
1121
use Neos\Flow\Persistence\PersistenceManagerInterface;
1222

1323
/**
14-
* ElasticSearch Indexing Job Interface
24+
* Nodeindexer for use in batch jobs
1525
*/
1626
class NodeIndexer extends ContentRepositoryAdaptor\Indexer\NodeIndexer
1727
{

Classes/IndexingJob.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\JobQueue\Common\Queue\Message;
515
use Flowpack\JobQueue\Common\Queue\QueueInterface;
616
use Neos\ContentRepository\Domain\Model\NodeData;

Classes/LoggerTrait.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Neos\Flow\Annotations as Flow;
515

616
/**

Classes/RemovalJob.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Exception;
515
use Flowpack\JobQueue\Common\Queue\Message;
616
use Flowpack\JobQueue\Common\Queue\QueueInterface;

Classes/UpdateAliasJob.php

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
<?php
22
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer;
33

4+
/*
5+
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
6+
*
7+
* (c) Contributors of the Neos Project - www.neos.io
8+
*
9+
* This package is Open Source Software. For the full copyright and license
10+
* information, please view the LICENSE file which was distributed with this
11+
* source code.
12+
*/
13+
414
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Indexer\NodeIndexer;
515
use Flowpack\JobQueue\Common\Job\JobInterface;
616
use Flowpack\JobQueue\Common\Queue\Message;
717
use Flowpack\JobQueue\Common\Queue\QueueInterface;
818
use Neos\Flow\Annotations as Flow;
919
use Neos\Flow\Utility\Algorithms;
1020

11-
/**
12-
* ElasticSearch Indexing Job Interface
13-
*/
1421
class UpdateAliasJob implements JobInterface
1522
{
1623
use LoggerTrait;

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Dominique Feyer
3+
Copyright (c) 2015 Dominique Feyer and Neos project contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)