TestFileUsage.php
Same filename in other branches
Namespace
Drupal\service_provider_testFile
-
core/
modules/ system/ tests/ modules/ service_provider_test/ src/ TestFileUsage.php
View source
<?php
namespace Drupal\service_provider_test;
use Drupal\file\FileInterface;
use Drupal\file\FileUsage\FileUsageBase;
class TestFileUsage extends FileUsageBase {
/**
* {@inheritdoc}
*/
public function add(FileInterface $file, $module, $type, $id, $count = 1) {
}
/**
* {@inheritdoc}
*/
public function delete(FileInterface $file, $module, $type = NULL, $id = NULL, $count = 1) {
}
/**
* {@inheritdoc}
*/
public function listUsage(FileInterface $file) {
return [];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TestFileUsage |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.