Skip to content

Commit

Permalink
Merge b9f9ebd into f033786
Browse files Browse the repository at this point in the history
  • Loading branch information
prolic committed Nov 25, 2018
2 parents f033786 + b9f9ebd commit 439de53
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/AllCheckpoint.php
@@ -0,0 +1,26 @@
<?php

/**
* This file is part of `prooph/event-store-client`.
* (c) 2018-2018 prooph software GmbH <contact@prooph.de>
* (c) 2018-2018 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

declare(strict_types=1);

namespace Prooph\EventStoreClient;

/**
* This class contains constants to be used when setting up subscriptions
* using the EventStoreAsyncConnection::subscribeToAllFromAsync method
*/
class AllCheckpoint
{
/**
* Indicates that a catch-up subscription should receive all events in the database.
*/
public const ALL_START = null;
}

0 comments on commit 439de53

Please sign in to comment.