aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications/OkAction.php
blob: 2b4dde03d131ee11224f17f61e68e25519e91e61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Wallabag\CoreBundle\Notifications;

class OkAction extends Action {

    public function __construct($link)
    {
        $this->link = $link;
        $this->label = 'OK';
        $this->type = Action::TYPE_OK;
    }
}