Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96218824
PhabricatorRepositoryParsedChange.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Dec 23, 21:21
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 21:21 (2 d)
Engine
blob
Format
Raw Data
Handle
23145151
Attached To
rPH Phabricator
PhabricatorRepositoryParsedChange.php
View Options
<?php
final
class
PhabricatorRepositoryParsedChange
extends
Phobject
{
private
$pathID
;
private
$targetPathID
;
private
$targetCommitID
;
private
$changeType
;
private
$fileType
;
private
$isDirect
;
private
$commitSequence
;
public
function
setPathID
(
$path_id
)
{
$this
->
pathID
=
$path_id
;
return
$this
;
}
public
function
getPathID
()
{
return
$this
->
pathID
;
}
public
function
setCommitSequence
(
$commit_sequence
)
{
$this
->
commitSequence
=
$commit_sequence
;
return
$this
;
}
public
function
getCommitSequence
()
{
return
$this
->
commitSequence
;
}
public
function
setIsDirect
(
$is_direct
)
{
$this
->
isDirect
=
$is_direct
;
return
$this
;
}
public
function
getIsDirect
()
{
return
$this
->
isDirect
;
}
public
function
setFileType
(
$file_type
)
{
$this
->
fileType
=
$file_type
;
return
$this
;
}
public
function
getFileType
()
{
return
$this
->
fileType
;
}
public
function
setChangeType
(
$change_type
)
{
$this
->
changeType
=
$change_type
;
return
$this
;
}
public
function
getChangeType
()
{
return
$this
->
changeType
;
}
public
function
setTargetCommitID
(
$target_commit_id
)
{
$this
->
targetCommitID
=
$target_commit_id
;
return
$this
;
}
public
function
getTargetCommitID
()
{
return
$this
->
targetCommitID
;
}
public
function
setTargetPathID
(
$target_path_id
)
{
$this
->
targetPathID
=
$target_path_id
;
return
$this
;
}
public
function
getTargetPathID
()
{
return
$this
->
targetPathID
;
}
}
Event Timeline
Log In to Comment