Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538054
PhabricatorPasteSnippet.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
618 B
Referenced Files
None
Subscribers
None
PhabricatorPasteSnippet.php
View Options
<?php
final
class
PhabricatorPasteSnippet
extends
Phobject
{
const
FULL
=
'full'
;
const
FIRST_LINES
=
'first_lines'
;
const
FIRST_BYTES
=
'first_bytes'
;
private
$content
;
private
$type
;
private
$contentLineCount
;
public
function
__construct
(
$content
,
$type
,
$content_line_count
)
{
$this
->
content
=
$content
;
$this
->
type
=
$type
;
$this
->
contentLineCount
=
$content_line_count
;
}
public
function
getContent
()
{
return
$this
->
content
;
}
public
function
getType
()
{
return
$this
->
type
;
}
public
function
getContentLineCount
()
{
return
$this
->
contentLineCount
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:31 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
110154
Default Alt Text
PhabricatorPasteSnippet.php (618 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment