storage = $storage;
$this->path = $path;
$this->fileId = $fileId;
$this->storageId = $storageId;
}
/**
* @return IStorage
* @since 22.0.0
*/
public function getStorage(): IStorage {
return $this->storage;
}
/**
* @return string
* @since 22.0.0
*/
public function getPath(): string {
return $this->path;
}
/**
* @param string $path
* @since 22.0.0
*/
public function setPath(string $path): void {
$this->path = $path;
}
/**
* @return int
* @since 22.0.0
*/
public function getFileId(): int {
return $this->fileId;
}
/**
* @return int
* @since 22.0.0
*/
public function getStorageId(): int {
return $this->storageId;
}
}
5c3'>dependabot/github_actions/github-actions-384b59e5c3
blob: d376f4f05aa421f6903f74370699c82d4e8e16d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
define( [
"lib/common",
"ui/button"
], function( common ) {
common.testWidget( "button", {
defaults: {
classes: {},
disabled: null,
icons: {
primary: null,
secondary: null
},
label: null,
text: true,
// callbacks
create: null
}
});
} );
|