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

namespace Wallabag\CoreBundle\Notifications;

class InfoAction extends Action {

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