Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php declare(strict_types=1);
2
 
3
namespace EduSharingApiClient;
4
 
5
/**
6
 * Class EduSharingNodeHelperConfig
7
 *
8
 * @author Torsten Simon  <simon@edu-sharing.net>
9
 */
10
class EduSharingNodeHelperConfig
11
{
12
    public UrlHandling $urlHandling;
13
 
14
    /**
15
     * EduSharingNodeHelperConfig constructor
16
     *
17
     * @param UrlHandling $urlHandling
18
     */
19
    public function __construct(UrlHandling $urlHandling) {
20
        $this->urlHandling = $urlHandling;
21
    }
22
}