aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications/InfoAction.php
blob: 3006b04afe293a1f346409e5282ae1ef6acc8edb (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;
    }
}