LTI Integration Library 4.10.3
PHP class library for building LTI integrations
 
Loading...
Searching...
No Matches
ConsumerNonce.php
1<?php
2
3namespace ceLTIc\LTI;
4
6
18{
19
26 public function __construct($consumer, $value = null)
27 {
28 parent::__construct($consumer, $value);
29 Util::logDebug('Class ceLTIc\LTI\ConsumerNonce has been deprecated; please use ceLTIc\LTI\PlatformNonce instead.', true);
30 }
31
37 public function getConsumer()
38 {
39 return $this->getPlatform();
40 }
41
42}
Class to represent a tool consumer nonce.
getConsumer()
Get tool consumer.
__construct($consumer, $value=null)
Class constructor.
Class to represent a platform nonce.
Class to implement utility methods.
Definition Util.php:15
static logDebug($message, $showSource=false)
Log a debug message.
Definition Util.php:274